Fix turn 0.

`Game.initialize_turn` doesn't run on turn zero, so we have to set up
the unit order events when we create the `Game`.
This commit is contained in:
Dan Albert 2020-11-21 15:00:07 -08:00
parent 851c2d88a9
commit bf7df6721a

View File

@ -101,6 +101,9 @@ class Game:
self.theater.controlpoints
)
for cp in self.theater.controlpoints:
cp.pending_unit_deliveries = self.units_delivery_event(cp)
self.sanitize_sides()
self.on_load()