aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubv <s.v.h21@hotmail.com>2012-11-14 09:42:05 -0500
committerSubv <s.v.h21@hotmail.com>2012-11-14 09:42:05 -0500
commit10a8a4f8f6dc33caba2631e686bd26a27c8fa1d1 (patch)
tree98798a96d6e48f6b0333a720d20b0afc75aca289
parent51414967c488dacb5b35c8fc5e642bef9dd4b42a (diff)
Missing variable in the function call.
-rwxr-xr-xsrc/server/game/Texts/CreatureTextMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Texts/CreatureTextMgr.cpp b/src/server/game/Texts/CreatureTextMgr.cpp
index 4785b9346f2..89b75fd1695 100755
--- a/src/server/game/Texts/CreatureTextMgr.cpp
+++ b/src/server/game/Texts/CreatureTextMgr.cpp
@@ -304,7 +304,7 @@ uint32 CreatureTextMgr::SendChat(Creature* source, uint8 textGroup, uint64 whisp
if (srcPlr)
{
- PlayerTextBuilder builder(source, finalSource, iter->group, iter->id, finalLang, whisperGuid);
+ PlayerTextBuilder builder(source, finalSource, finalType, iter->group, iter->id, finalLang, whisperGuid);
SendChatPacket(finalSource, builder, finalType, whisperGuid, range, team, gmOnly);
}
else