diff options
| author | oy <Tom_Adams@web.de> | 2010-10-13 20:31:21 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-10-13 20:31:21 +0200 |
| commit | fa768449e28b2ad494eb4d2340886583599805ec (patch) | |
| tree | f474c330d68d6bd52881161cb45c3419bd21d909 /src/engine/client | |
| parent | be315edfc052a5aa1c7d9d48394e0997a989c8ae (diff) | |
| download | zcatch-fa768449e28b2ad494eb4d2340886583599805ec.tar.gz zcatch-fa768449e28b2ad494eb4d2340886583599805ec.zip | |
fixed issue with reason on forcevotekick
Diffstat (limited to 'src/engine/client')
| -rw-r--r-- | src/engine/client/client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/client/client.cpp b/src/engine/client/client.cpp index c07a2478..bc4cc7e0 100644 --- a/src/engine/client/client.cpp +++ b/src/engine/client/client.cpp @@ -1950,8 +1950,8 @@ void CClient::RegisterCommands() { m_pConsole = Kernel()->RequestInterface<IConsole>(); // register server dummy commands for tab completion - m_pConsole->Register("kick", "i?s", CFGFLAG_SERVER, 0, 0, "Kick player with specified id for any reason"); - m_pConsole->Register("ban", "s?is", CFGFLAG_SERVER, 0, 0, "Ban player with ip/id for x minutes for any reason"); + m_pConsole->Register("kick", "i?r", CFGFLAG_SERVER, 0, 0, "Kick player with specified id for any reason"); + m_pConsole->Register("ban", "s?ir", CFGFLAG_SERVER, 0, 0, "Ban player with ip/id for x minutes for any reason"); m_pConsole->Register("unban", "s", CFGFLAG_SERVER, 0, 0, "Unban ip"); m_pConsole->Register("bans", "", CFGFLAG_SERVER, 0, 0, "Show banlist"); m_pConsole->Register("status", "", CFGFLAG_SERVER, 0, 0, "List players"); |