diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json index ad911e72..cb6c9c5e 100644 --- a/QuestPaths/quest-v1.json +++ b/QuestPaths/quest-v1.json @@ -778,7 +778,8 @@ "bow", "uchiwasshoi", "clap", - "victorypose" + "victorypose", + "comfort" ] } } diff --git a/Questionable.Model/Questing/Converter/EmoteConverter.cs b/Questionable.Model/Questing/Converter/EmoteConverter.cs index e6080ce0..935bc32a 100644 --- a/Questionable.Model/Questing/Converter/EmoteConverter.cs +++ b/Questionable.Model/Questing/Converter/EmoteConverter.cs @@ -32,5 +32,6 @@ public sealed class EmoteConverter() : EnumConverter(Values) { EEmote.Uchiwasshoi, "uchiwasshoi" }, { EEmote.Clap, "clap" }, { EEmote.VictoryPose, "victorypose" }, + { EEmote.Comfort, "comfort" }, }; } diff --git a/Questionable.Model/Questing/EEmote.cs b/Questionable.Model/Questing/EEmote.cs index 517f9db7..0b81fd3e 100644 --- a/Questionable.Model/Questing/EEmote.cs +++ b/Questionable.Model/Questing/EEmote.cs @@ -33,4 +33,5 @@ public enum EEmote Uchiwasshoi = 278, Clap = 7, VictoryPose = 122, + Comfort = 9, }