Remove auto-loss on front line for skipped turns.

This commit is contained in:
Dan Albert
2021-09-05 21:17:38 -07:00
parent 18336f58d3
commit 45b52f4dea
2 changed files with 1 additions and 4 deletions

View File

@@ -285,10 +285,6 @@ class Game:
if not skipped:
for cp in self.theater.player_points():
cp.base.affect_strength(+PLAYER_BASE_STRENGTH_RECOVERY)
elif self.turn > 1:
for cp in self.theater.player_points():
if not cp.is_carrier and not cp.is_lha:
cp.base.affect_strength(-PLAYER_BASE_STRENGTH_RECOVERY)
self.conditions = self.generate_conditions()