From 0eef3cd5eb7189250e1089ec6427602a7fb06d5a Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Fri, 6 Sep 2024 13:25:10 +0200 Subject: [PATCH] Add 'comfort' emote --- QuestPaths/quest-v1.json | 3 ++- Questionable.Model/Questing/Converter/EmoteConverter.cs | 1 + Questionable.Model/Questing/EEmote.cs | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) 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, }