diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index e5d946bd..0c0661f7 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -808,7 +808,8 @@ "comfort", "battlestance", "doze", - "box" + "box", + "sundropdance" ] } } diff --git a/Questionable.Model/Questing/Converter/EmoteConverter.cs b/Questionable.Model/Questing/Converter/EmoteConverter.cs index 183bf480..213d909a 100644 --- a/Questionable.Model/Questing/Converter/EmoteConverter.cs +++ b/Questionable.Model/Questing/Converter/EmoteConverter.cs @@ -36,5 +36,6 @@ public sealed class EmoteConverter() : EnumConverter(Values) { EEmote.BattleStance, "battlestance" }, { EEmote.Doze, "doze" }, { EEmote.Box, "box" }, + { EEmote.SundropDance, "sundropdance"} }; } diff --git a/Questionable.Model/Questing/EEmote.cs b/Questionable.Model/Questing/EEmote.cs index 60e9661a..4f1b2c6f 100644 --- a/Questionable.Model/Questing/EEmote.cs +++ b/Questionable.Model/Questing/EEmote.cs @@ -37,4 +37,5 @@ public enum EEmote BattleStance = 121, Doze = 13, Box = 166, + SundropDance = 120, }