From 77d1c08002ea8eb54bb9114665fb567c6f9c0b75 Mon Sep 17 00:00:00 2001 From: Marcus Whybrow Date: Tue, 3 Jul 2012 12:18:02 +0100 Subject: [PATCH] Fixed the game mode, cmd and cmdlog commands. They were not passed the correct arguments to function correctly. --- init/msm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init/msm b/init/msm index 9ed9d0a..f83f4ce 100755 --- a/init/msm +++ b/init/msm @@ -2621,7 +2621,7 @@ main() { register_command " operator|op add " "command_server_operator_add" register_command " operator|op remove " "command_server_operator_remove" register_command " operator|op list" "command_server_operator_list" - register_command " gamemode|gm survival|creative|0|1 " "command_server_gamemode" + register_command " gamemode|gm " "command_server_gamemode" register_command " kick " "command_server_kick" register_command " say " "command_server_say" register_command " time set " "command_server_time_set" @@ -2630,8 +2630,8 @@ main() { register_command " save on" "command_server_save_on" register_command " save off" "command_server_save_off" register_command " save all" "command_server_save_all" - register_command " cmd" "command_server_cmd" - register_command " cmdlog" "command_server_cmdlog" + register_command " cmd " "command_server_cmd" + register_command " cmdlog " "command_server_cmdlog" register_command " console" "command_server_console" # This function call matches the user input to a registered command