diff options
| author | click <none@none> | 2010-11-21 23:00:03 +0100 |
|---|---|---|
| committer | click <none@none> | 2010-11-21 23:00:03 +0100 |
| commit | 634ddae566c803cdcf057ce8b77d9d29d78ec2ba (patch) | |
| tree | 4868b62f59776a3dba2c4b9f2eb62f835c199a32 | |
| parent | b62f587c30e17f27fe126fc7eca69516baf8b367 (diff) | |
Core/Commands: Fix issues with crashes related to .gobject near command usage (thanks to Josh for finding the bug and culprit)
--HG--
branch : trunk
| -rw-r--r-- | src/server/scripts/Commands/cs_gobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_gobject.cpp b/src/server/scripts/Commands/cs_gobject.cpp index 5a6f91d7c5d..f32ad232511 100644 --- a/src/server/scripts/Commands/cs_gobject.cpp +++ b/src/server/scripts/Commands/cs_gobject.cpp @@ -562,7 +562,7 @@ public: if (!gInfo) continue; - handler->PSendSysMessage(LANG_GO_LIST_CHAT, guid, entry, guid, gInfo->name, x, y, z, mapid); + handler->PSendSysMessage(LANG_GO_LIST_CHAT, guid, entry, gInfo->name, x, y, z, mapid); ++count; } while (result->NextRow()); |
