From 701f115dd7e1b80830fc15c7c12863866ca2abac Mon Sep 17 00:00:00 2001 From: dP Date: Fri, 23 Feb 2024 02:37:52 +0530 Subject: [PATCH] Allow reloadnewgrfs in multiplayer (for grf-py live reload) --- src/console_cmds.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 9e5ee45741..7e13bb345a 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -190,7 +190,8 @@ DEF_CONSOLE_HOOK(ConHookNewGRFDeveloperTool) if (echo) IConsolePrint(CC_ERROR, "This command is only available in-game and in the editor."); return CHR_DISALLOW; } - return ConHookNoNetwork(echo); + return CHR_ALLOW; + // CM return ConHookNoNetwork(echo); } return CHR_HIDE; }