Add 'disappointed', 'examineself' and 'joy' emotes

pull/89/head
Liza 2024-10-19 10:10:33 +02:00
parent 8d2c4139f9
commit 15999c8c79
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 11 additions and 2 deletions

View File

@ -826,7 +826,10 @@
"battlestance",
"doze",
"box",
"sundropdance"
"sundropdance",
"disappointed",
"examineself",
"joy"
]
}
}

View File

@ -36,6 +36,9 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
{ EEmote.BattleStance, "battlestance" },
{ EEmote.Doze, "doze" },
{ EEmote.Box, "box" },
{ EEmote.SundropDance, "sundropdance"}
{ EEmote.SundropDance, "sundropdance"},
{ EEmote.Disappointed, "disappointed" },
{ EEmote.ExamineSelf, "examineself" },
{ EEmote.Joy, "joy" },
};
}

View File

@ -38,4 +38,7 @@ public enum EEmote
Doze = 13,
Box = 166,
SundropDance = 120,
Disappointed = 49,
ExamineSelf = 44,
Joy = 18,
}