Add /lookout as usable emote
authorLiza Carvelli <liza@carvel.li>
Thu, 18 Jul 2024 16:38:23 +0000 (18:38 +0200)
committerLiza Carvelli <liza@carvel.li>
Thu, 18 Jul 2024 16:38:23 +0000 (18:38 +0200)
QuestPaths/quest-v1.json
Questionable.Model/V1/Converter/EmoteConverter.cs
Questionable.Model/V1/EEmote.cs

index 65a34d35d2da559815a3eec9761944b99481809a..95f9a6309492ce119ac155d5784237ec6f041792 100644 (file)
                           "imperialsalute",
                           "pet",
                           "dance",
-                          "respect"
+                          "respect",
+                          "lookout"
                         ]
                       }
                     }
index 9238427da323da90272aeefb5918b53a1765fe3f..a4a54c89c33bfb5115ff4c3a3cf85f32ec9952b2 100644 (file)
@@ -25,5 +25,6 @@ public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
         { EEmote.Pet, "pet" },
         { EEmote.Dance, "dance" },
         { EEmote.Respect, "respect" },
+        { EEmote.Lookout, "lookout" },
     };
 }
index f986e209bd1760846fe921228d39851596a8a18f..e248b0a8e58b3fd86ecd083047ec24b59e91af6c 100644 (file)
@@ -27,4 +27,5 @@ public enum EEmote
     Pet = 105,
     Dance = 11,
     Respect = 140,
+    Lookout = 22,
 }