diff options
author | megamage <none@none> | 2009-03-20 14:28:13 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-20 14:28:13 -0600 |
commit | 65738328de7f5fdc422ce6af4633380df4e3d319 (patch) | |
tree | b1ab0718466e836c6c2c1162badb5a0c6a71d4b1 /src | |
parent | d7e05e8003a095db6e10c470d96a80f431046099 (diff) |
*Fixed crash caused by .distance command. By arrai.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Level3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Level3.cpp b/src/game/Level3.cpp index 5974e818361..46e5c880b16 100644 --- a/src/game/Level3.cpp +++ b/src/game/Level3.cpp @@ -3756,7 +3756,7 @@ bool ChatHandler::HandleGuildDeleteCommand(const char* args) bool ChatHandler::HandleGetDistanceCommand(const char* args) { - WorldObject* obj; + WorldObject* obj = NULL; if (*args) { |