diff options
author | Ascathor <Break_the_Chain@web.de> | 2013-10-27 20:37:52 +0100 |
---|---|---|
committer | Ascathor <Break_the_Chain@web.de> | 2013-10-27 20:38:33 +0100 |
commit | e5553cfb78d8bdde4e9c6a2dbc98ff60bb8a273e (patch) | |
tree | 87ec722c6f9400a8e155cde2354e7e73e103718a /src | |
parent | fa33c428e920a7ae60029f1fb85810a41e959758 (diff) |
Core/Command: Fix ban info order for .pinfo
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Commands/cs_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_misc.cpp b/src/server/scripts/Commands/cs_misc.cpp index 3d531cee1f5..f608423e9cf 100644 --- a/src/server/scripts/Commands/cs_misc.cpp +++ b/src/server/scripts/Commands/cs_misc.cpp @@ -1655,7 +1655,7 @@ public: // Output III. LANG_PINFO_BANNED if ban exists and is applied if (banTime >= 0) - handler->PSendSysMessage(LANG_PINFO_BANNED, banType.c_str(), banTime > 0 ? secsToTimeString(banTime - time(NULL), true).c_str() : "permanently", banReason.c_str(), bannedBy.c_str()); + handler->PSendSysMessage(LANG_PINFO_BANNED, banType.c_str(), banReason.c_str(), banTime > 0 ? secsToTimeString(banTime - time(NULL), true).c_str() : "permanently", bannedBy.c_str()); // Output IV. LANG_PINFO_MUTED if mute is applied if (muteTime > 0) |