Add 'battlestance' emote

pull/41/head
Liza 2024-09-08 01:40:05 +02:00
parent f0ea7355a2
commit 755c7b6549
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 4 additions and 1 deletions

View File

@ -779,7 +779,8 @@
"uchiwasshoi", "uchiwasshoi",
"clap", "clap",
"victorypose", "victorypose",
"comfort" "comfort",
"battlestance"
] ]
} }
} }

View File

@ -33,5 +33,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.Clap, "clap" }, { EEmote.Clap, "clap" },
{ EEmote.VictoryPose, "victorypose" }, { EEmote.VictoryPose, "victorypose" },
{ EEmote.Comfort, "comfort" }, { EEmote.Comfort, "comfort" },
{ EEmote.BattleStance, "battlestance" },
}; };
} }

View File

@ -34,4 +34,5 @@ public enum EEmote
Clap = 7, Clap = 7,
VictoryPose = 122, VictoryPose = 122,
Comfort = 9, Comfort = 9,
BattleStance = 121,
} }