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
|
// "---" 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue