Added emote "Sundrop Dance"

Plogon Enjoyer 2024-09-23 01:06:58 +08:00
parent 09f8cb9078
commit 529e8b74f4
3 changed files with 4 additions and 1 deletions

View File

@ -801,7 +801,8 @@
"comfort", "comfort",
"battlestance", "battlestance",
"doze", "doze",
"box" "box",
"sundropdance"
] ]
} }
} }

View File

@ -36,5 +36,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.BattleStance, "battlestance" }, { EEmote.BattleStance, "battlestance" },
{ EEmote.Doze, "doze" }, { EEmote.Doze, "doze" },
{ EEmote.Box, "box" }, { EEmote.Box, "box" },
{ EEmote.SundropDance, "sundropdance"}
}; };
} }

View File

@ -37,4 +37,5 @@ public enum EEmote
BattleStance = 121, BattleStance = 121,
Doze = 13, Doze = 13,
Box = 166, Box = 166,
SundropDance = 120,
} }