diff options
| author | Brian <runningnak3d@gmail.com> | 2010-07-21 12:13:23 -0600 |
|---|---|---|
| committer | Brian <runningnak3d@gmail.com> | 2010-07-21 12:13:23 -0600 |
| commit | 4320b1090166f05ee888400a6975b7288a86cba8 (patch) | |
| tree | 698bf6ebfbb905043e6f2d0c253d5899e28ee7ea /src/server/game/Chat/Commands | |
| parent | 5995a8ec1d356cba24a62661616c04a058c251a2 (diff) | |
* Implement the ability to delete characters without them being removed from
* the DB, so they can be unerased
* Original patch by DasBlub
* Ported to Trinty by Az@zel
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/Chat/Commands')
| -rw-r--r-- | src/server/game/Chat/Commands/Level3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Chat/Commands/Level3.cpp b/src/server/game/Chat/Commands/Level3.cpp index 40c3aae5705..049df5a342f 100644 --- a/src/server/game/Chat/Commands/Level3.cpp +++ b/src/server/game/Chat/Commands/Level3.cpp @@ -6522,7 +6522,7 @@ bool ChatHandler::HandlePDumpWriteCommand(const char *args) uint32 guid; // character name can't start from number - if (isNumeric(p2[0])) + if (isNumeric(p2)) guid = atoi(p2); else { |
