From 21bc779ebd3322f0cbb4847d20955f0656bc17ea Mon Sep 17 00:00:00 2001 From: Resxt <55228336+Resxt@users.noreply.github.com> Date: Sat, 17 Jun 2023 10:31:35 +0200 Subject: [PATCH] chat_command_rounds 1.0.1 Added alias --- chat_commands/zm/chat_command_rounds.gsc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chat_commands/zm/chat_command_rounds.gsc b/chat_commands/zm/chat_command_rounds.gsc index 87d20d4..69de136 100644 --- a/chat_commands/zm/chat_command_rounds.gsc +++ b/chat_commands/zm/chat_command_rounds.gsc @@ -2,10 +2,10 @@ Init() { - CreateCommand(level.chat_commands["ports"], "setround", "function", ::SetRoundCommand, 4); - CreateCommand(level.chat_commands["ports"], "previousround", "function", ::PreviousRoundCommand, 4); - CreateCommand(level.chat_commands["ports"], "nextround", "function", ::NextRoundCommand, 4); - CreateCommand(level.chat_commands["ports"], "restartround", "function", ::RestartRoundCommand, 4); + CreateCommand(level.chat_commands["ports"], "setround", "function", ::SetRoundCommand, 4, [], array("sr")); + CreateCommand(level.chat_commands["ports"], "previousround", "function", ::PreviousRoundCommand, 4, [], array("pr")); + CreateCommand(level.chat_commands["ports"], "nextround", "function", ::NextRoundCommand, 4, [], array("nr")); + CreateCommand(level.chat_commands["ports"], "restartround", "function", ::RestartRoundCommand, 4, [], array("rr")); }