diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index a3fcaa63..495beb49 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -658,7 +658,9 @@ "poke", "flex", "soothe", - "me" + "me", + "welcome", + "imperialsalute" ] } } diff --git a/Questionable.Model/V1/Converter/EmoteConverter.cs b/Questionable.Model/V1/Converter/EmoteConverter.cs index 70f9f663..2a32d848 100644 --- a/Questionable.Model/V1/Converter/EmoteConverter.cs +++ b/Questionable.Model/V1/Converter/EmoteConverter.cs @@ -20,5 +20,7 @@ public sealed class EmoteConverter() : EnumConverter(Values) { EEmote.Flex, "flex" }, { EEmote.Soothe, "soothe" }, { EEmote.Me, "me" }, + { EEmote.Welcome, "welcome" }, + { EEmote.ImperialSalute, "imperialsalute" }, }; } diff --git a/Questionable.Model/V1/EEmote.cs b/Questionable.Model/V1/EEmote.cs index 9084b11a..3085be34 100644 --- a/Questionable.Model/V1/EEmote.cs +++ b/Questionable.Model/V1/EEmote.cs @@ -22,4 +22,6 @@ public enum EEmote Flex = 139, Soothe = 35, Me = 23, + Welcome = 41, + ImperialSalute = 59, }