We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84394ed commit 31a7e77Copy full SHA for 31a7e77
src/server/game/Handlers/NPCHandler.cpp
@@ -186,8 +186,13 @@ void WorldSession::HandleGossipHelloOpcode(WorldPacket& recvData)
186
187
_player->PlayerTalkClass->ClearMenus();
188
#ifdef ELUNA
189
+ // Let Eluna handle gossip first; fallback to default if unhandled
190
+ bool handled = false;
191
+
192
if (Eluna* e = GetPlayer()->GetEluna())
- if (!e->OnGossipHello(_player, unit))
193
+ handled = e->OnGossipHello(_player, unit);
194
195
+ if(!handled)
196
#endif
197
if (!unit->AI()->OnGossipHello(_player))
198
{
0 commit comments