diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index eefbf1eb..3751b47d 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -826,7 +826,10 @@ "battlestance", "doze", "box", - "sundropdance" + "sundropdance", + "disappointed", + "examineself", + "joy" ] } } diff --git a/Questionable.Model/Questing/Converter/EmoteConverter.cs b/Questionable.Model/Questing/Converter/EmoteConverter.cs index 213d909a..e899a582 100644 --- a/Questionable.Model/Questing/Converter/EmoteConverter.cs +++ b/Questionable.Model/Questing/Converter/EmoteConverter.cs @@ -36,6 +36,9 @@ public sealed class EmoteConverter() : EnumConverter(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" }, }; } diff --git a/Questionable.Model/Questing/EEmote.cs b/Questionable.Model/Questing/EEmote.cs index 4f1b2c6f..2656997b 100644 --- a/Questionable.Model/Questing/EEmote.cs +++ b/Questionable.Model/Questing/EEmote.cs @@ -38,4 +38,7 @@ public enum EEmote Doze = 13, Box = 166, SundropDance = 120, + Disappointed = 49, + ExamineSelf = 44, + Joy = 18, }