From 0872e6e9180344b7adb83b2998b96994eb6ddc25 Mon Sep 17 00:00:00 2001 From: sprunk Date: Mon, 14 Apr 2025 22:43:53 +0200 Subject: [PATCH] Clarify instructions on getting a dev engine capable room --- ZkLobbyServer/autohost/Commands/CmdEngine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZkLobbyServer/autohost/Commands/CmdEngine.cs b/ZkLobbyServer/autohost/Commands/CmdEngine.cs index fffa9a13d2..326d56dd9f 100644 --- a/ZkLobbyServer/autohost/Commands/CmdEngine.cs +++ b/ZkLobbyServer/autohost/Commands/CmdEngine.cs @@ -23,7 +23,7 @@ public override string Arm(ServerBattle battle, Say e, string arguments = null) if ((battle.Mode != AutohostMode.None || !battle.IsPassworded) && engine != battle.server.Engine && !battle.IsAutohost) { - battle.Respond(e, $"You cannot change engine to version other than {battle.server.Engine} here, use custom passworded room"); + battle.Respond(e, $"You cannot change engine to version other than {battle.server.Engine} here, must be the Custom room type (say '!type custom') and passworded (say '!password bla', can remove it afterwards via '!password')"); return null; }