diff options
author | megamage <none@none> | 2009-03-02 16:45:41 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-02 16:45:41 -0600 |
commit | f87dda2473cc534d2fc60e0933213fad862c3dd4 (patch) | |
tree | d9e91daab4fa2d085d096106233d838e3b9d57ef /src/game/Level3.cpp | |
parent | a0197ae0ff864e557b205d75f209bce3659b1e45 (diff) |
[7357] Fixed double applied playerlink in .levelup command. Author: balrok
--HG--
branch : trunk
Diffstat (limited to 'src/game/Level3.cpp')
-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 6e2d8f0320e..781c9d1a0c6 100644 --- a/src/game/Level3.cpp +++ b/src/game/Level3.cpp @@ -4416,7 +4416,7 @@ bool ChatHandler::HandleLevelUpCommand(const char* args) return false; } - name = GetNameLink(chr); + name = chr->GetName(); } assert(chr || chr_guid); |