Update some log statements

This commit is contained in:
Tim Van Baak 2024-08-21 14:27:48 +00:00
parent aaf3320cf8
commit 5167978f8c
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,7 @@ public class GameScriptHandler(World world, bool strict = false) : IScriptHandle
// "---" submits the orders for validation to allow for assertions about it // "---" submits the orders for validation to allow for assertions about it
if (input == "---") { if (input == "---") {
Console.WriteLine("Submitting orders for validation");
// TODO submit orders // TODO submit orders
return new ValidatedOrdersScriptHandler(World, Strict); return new ValidatedOrdersScriptHandler(World, Strict);
} }
@ -43,8 +44,6 @@ public class GameScriptHandler(World world, bool strict = false) : IScriptHandle
return null; return null;
} }
Console.WriteLine($"{CurrentPower}: {input}");
return this; return this;
} }

View File

@ -44,6 +44,7 @@ public class SetupScriptHandler(World world, bool strict = false) : IScriptHandl
case "begin": case "begin":
case "---": case "---":
Console.WriteLine("Starting game");
return new GameScriptHandler(World, Strict); return new GameScriptHandler(World, Strict);
case "list" when args.Length == 1: case "list" when args.Length == 1: