diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index a3fcaa633..495beb496 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 70f9f6638..2a32d8482 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 9084b11a3..3085be34c 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, }