From 7f948465a4012773abe39f4a0fcae08517e08417 Mon Sep 17 00:00:00 2001 From: ghost Date: Fri, 8 Oct 2021 20:38:25 +0300 Subject: [PATCH] Added a missing call to commit_cargo_ship_losses when committing mission results, fixing a problem which caused lost ground units on sinked cargo ships to not register. --- game/event/event.py | 1 + 1 file changed, 1 insertion(+) diff --git a/game/event/event.py b/game/event/event.py index 41fda58f..ddee17b5 100644 --- a/game/event/event.py +++ b/game/event/event.py @@ -210,6 +210,7 @@ class Event: self.commit_pilot_experience() self.commit_front_line_losses(debriefing) self.commit_convoy_losses(debriefing) + self.commit_cargo_ship_losses(debriefing) self.commit_airlift_losses(debriefing) self.commit_ground_object_losses(debriefing) self.commit_building_losses(debriefing)