Add 'comfort' emote
authorLiza Carvelli <liza@carvel.li>
Fri, 6 Sep 2024 11:25:10 +0000 (13:25 +0200)
committerLiza Carvelli <liza@carvel.li>
Fri, 6 Sep 2024 11:25:10 +0000 (13:25 +0200)
QuestPaths/quest-v1.json
Questionable.Model/Questing/Converter/EmoteConverter.cs
Questionable.Model/Questing/EEmote.cs

index ad911e72430f0aa1bc35b3518e47fc251cbbc101..cb6c9c5e599287a7b6e60542b98472534555e8ad 100644 (file)
                   "bow",
                   "uchiwasshoi",
                   "clap",
-                  "victorypose"
+                  "victorypose",
+                  "comfort"
                 ]
               }
             }
index e6080ce0b2feb5564169057c35a4139ce537452c..935bc32ae217a9b9b823475a5feb5a23a1e5be70 100644 (file)
@@ -32,5 +32,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
         { EEmote.Uchiwasshoi, "uchiwasshoi" },
         { EEmote.Clap, "clap" },
         { EEmote.VictoryPose, "victorypose" },
+        { EEmote.Comfort, "comfort" },
     };
 }
index 517f9db742ec8949963175f933fbc2721a2df853..0b81fd3e8fb58b0dce5ab3f765cd3903a383da1b 100644 (file)
@@ -33,4 +33,5 @@ public enum EEmote
     Uchiwasshoi = 278,
     Clap = 7,
     VictoryPose = 122,
+    Comfort = 9,
 }