master #2

Merged
AnimaMachinae merged 64 commits from liza/Questionable:master into master 2024-10-26 03:23:56 +00:00
3 changed files with 11 additions and 2 deletions
Showing only changes of commit 15999c8c79 - Show all commits

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,
}