fix(scripts/instance): Force correct gossip/text updates (#3838)

This commit is contained in:
Vox
2021-01-08 07:34:05 -05:00
committed by GitHub
parent 5e56a288a6
commit 9592028ad1
2 changed files with 16 additions and 1 deletions

View File

@@ -107,7 +107,15 @@ public:
}
}
SendGossipMenuFor(player, DEFAULT_GOSSIP_MESSAGE, creature->GetGUID());
if (creature->GetEntry() == NPC_SYLVANAS_PART1)
{
SendGossipMenuFor(player, 15215, creature->GetGUID());
}
else if (creature->GetEntry() == NPC_JAINA_PART1)
{
SendGossipMenuFor(player, 15339, creature->GetGUID());
}
return true;
}