Update some log statements
This commit is contained in:
parent
aaf3320cf8
commit
5167978f8c
|
@ -27,6 +27,7 @@ public class GameScriptHandler(World world, bool strict = false) : IScriptHandle
|
|||
|
||||
// "---" submits the orders for validation to allow for assertions about it
|
||||
if (input == "---") {
|
||||
Console.WriteLine("Submitting orders for validation");
|
||||
// TODO submit orders
|
||||
return new ValidatedOrdersScriptHandler(World, Strict);
|
||||
}
|
||||
|
@ -43,8 +44,6 @@ public class GameScriptHandler(World world, bool strict = false) : IScriptHandle
|
|||
return null;
|
||||
}
|
||||
|
||||
Console.WriteLine($"{CurrentPower}: {input}");
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
|
@ -44,6 +44,7 @@ public class SetupScriptHandler(World world, bool strict = false) : IScriptHandl
|
|||
|
||||
case "begin":
|
||||
case "---":
|
||||
Console.WriteLine("Starting game");
|
||||
return new GameScriptHandler(World, Strict);
|
||||
|
||||
case "list" when args.Length == 1:
|
||||
|
|
Loading…
Reference in New Issue