From 722c065089ae35ccb329971e2d6c67b1fb3ae19b Mon Sep 17 00:00:00 2001 From: Kelsi Date: Sun, 5 Apr 2026 17:33:42 -0700 Subject: [PATCH] fix(emotes): use EMOTE_TALK for /fart and /stink (no dedicated anim in DBC) --- src/rendering/animation/emote_registry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rendering/animation/emote_registry.cpp b/src/rendering/animation/emote_registry.cpp index 307968bc..0d438184 100644 --- a/src/rendering/animation/emote_registry.cpp +++ b/src/rendering/animation/emote_registry.cpp @@ -175,8 +175,8 @@ void EmoteRegistry::loadFromDbc() { {"sleep", anim::EMOTE_SLEEP}, // 71 — stand-state emote {"laugh", anim::EMOTE_LAUGH}, // 70 — backup {"flirt", anim::EMOTE_SHY}, // 83 — DBC calls it SHY; it's the flirt animation - {"fart", anim::EMOTE_FLEX}, // 82 — straining/tensing gesture - {"stink", anim::EMOTE_RUDE}, // 73 — dismissive/disgusted gesture + {"fart", anim::EMOTE_TALK}, // 60 — generic gesture (WoW has no dedicated anim) + {"stink", anim::EMOTE_TALK}, // 60 — generic gesture (WoW has no dedicated anim) }; for (auto& [cmd, info] : emoteTable_) { if (info.animId == 0) {