diff --git a/src/cs_anticheat.cpp b/src/cs_anticheat.cpp index a943159..51b14a6 100644 --- a/src/cs_anticheat.cpp +++ b/src/cs_anticheat.cpp @@ -55,18 +55,18 @@ public: { static std::vector anticheatCommandTable = { - { "global", HandleAntiCheatGlobalCommand, SEC_GAMEMASTER, Console::Yes }, - { "player", HandleAntiCheatPlayerCommand, SEC_GAMEMASTER, Console::Yes }, - { "delete", HandleAntiCheatDeleteCommand, SEC_ADMINISTRATOR, Console::Yes }, - { "jail", HandleAnticheatJailCommand, SEC_GAMEMASTER, Console::Yes }, - { "parole", HandleAnticheatParoleCommand, SEC_ADMINISTRATOR, Console::Yes }, - { "purge", HandleAntiCheatPurgeCommand, SEC_ADMINISTRATOR, Console::Yes }, - { "warn", HandleAnticheatWarnCommand, SEC_GAMEMASTER, Console::Yes } + { "global", HandleAntiCheatGlobalCommand, SEC_GAMEMASTER, Console::Yes }, + { "player", HandleAntiCheatPlayerCommand, SEC_GAMEMASTER, Console::Yes }, + { "delete", HandleAntiCheatDeleteCommand, SEC_ADMINISTRATOR, Console::Yes }, + { "jail", HandleAnticheatJailCommand, SEC_GAMEMASTER, Console::Yes }, + { "parole", HandleAnticheatParoleCommand, SEC_ADMINISTRATOR, Console::Yes }, + { "purge", HandleAntiCheatPurgeCommand, SEC_ADMINISTRATOR, Console::Yes }, + { "warn", HandleAnticheatWarnCommand, SEC_GAMEMASTER, Console::Yes } }; static std::vector commandTable = { - { "anticheat", SEC_GAMEMASTER, true, NULL, "", anticheatCommandTable}, + { "anticheat", anticheatCommandTable }, }; return commandTable;