chat_commands 1.1.1

Fix missing port for example
This commit is contained in:
Resxt
2022-10-15 15:57:03 +02:00
committed by GitHub
parent 3701bae295
commit 061a6bf516

View File

@ -21,7 +21,7 @@ Init()
InitChatCommands() InitChatCommands()
{ {
level.commands_prefix = "!"; level.commands_prefix = "!";
level.commands_servers_ports = ["27016", "27017"]; level.commands_servers_ports = ["27016", "27017", "27018"];
InitCommands(); InitCommands();
@ -273,4 +273,4 @@ CommandHelpDoesNotExistError(commandName)
NotEnoughArgsError(minimumArgs) NotEnoughArgsError(minimumArgs)
{ {
return ["Not enough arguments supplied", "At least " + minimumArgs + " argument expected"]; return ["Not enough arguments supplied", "At least " + minimumArgs + " argument expected"];
} }