aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormegamage <none@none>2009-05-03 22:23:00 -0500
committermegamage <none@none>2009-05-03 22:23:00 -0500
commitad9f94b8cc4f2523b5f0277e1eeeb9b4d24aaf4e (patch)
tree631610cc94f2f7aca55bb81959cd5253d743fff6
parentc25f63043d65d33d96dfb32179018eade4f85513 (diff)
[7747] Fixed crash in ModifyGender command. Author: Foks
--HG-- branch : trunk
-rw-r--r--src/game/Level3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Level3.cpp b/src/game/Level3.cpp
index ba408101c7d..56692a2b1ad 100644
--- a/src/game/Level3.cpp
+++ b/src/game/Level3.cpp
@@ -7457,7 +7457,7 @@ bool ChatHandler::HandleModifyGenderCommand(const char *args)
if(!player)
{
- PSendSysMessage(LANG_NO_PLAYER);
+ PSendSysMessage(LANG_NO_PLAYER, args);
SetSentErrorMessage(true);
return false;
}