From 061a6bf5163e4cd40edb9feed50e4be707ee8d23 Mon Sep 17 00:00:00 2001 From: Resxt <55228336+Resxt@users.noreply.github.com> Date: Sat, 15 Oct 2022 15:57:03 +0200 Subject: [PATCH] chat_commands 1.1.1 Fix missing port for example --- small_scripts/chat_commands.gsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/small_scripts/chat_commands.gsc b/small_scripts/chat_commands.gsc index 577aaa8..b439d81 100644 --- a/small_scripts/chat_commands.gsc +++ b/small_scripts/chat_commands.gsc @@ -21,7 +21,7 @@ Init() InitChatCommands() { level.commands_prefix = "!"; - level.commands_servers_ports = ["27016", "27017"]; + level.commands_servers_ports = ["27016", "27017", "27018"]; InitCommands(); @@ -273,4 +273,4 @@ CommandHelpDoesNotExistError(commandName) NotEnoughArgsError(minimumArgs) { return ["Not enough arguments supplied", "At least " + minimumArgs + " argument expected"]; -} \ No newline at end of file +}