Skip to content

Commit

Permalink
Update cs_anticheat.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitzunu committed Jul 18, 2024
1 parent cf3b776 commit f06d82f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/cs_anticheat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,18 @@ class anticheat_commandscript : public CommandScript
{
static std::vector<ChatCommand> 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<ChatCommand> commandTable =
{
{ "anticheat", SEC_GAMEMASTER, true, NULL, "", anticheatCommandTable},
{ "anticheat", anticheatCommandTable },
};

return commandTable;
Expand Down

0 comments on commit f06d82f

Please sign in to comment.