From 55fb5befb9a5300efcb69ca532e24abfe6ee21db Mon Sep 17 00:00:00 2001 From: MetalStormGhost <89945461+MetalStormGhost@users.noreply.github.com> Date: Sat, 10 Dec 2022 18:17:35 +0200 Subject: [PATCH] F-104C is now correctly removed from the faction when the mod is not enabled. (#33) --- game/factions/faction.py | 1 + 1 file changed, 1 insertion(+) diff --git a/game/factions/faction.py b/game/factions/faction.py index ea7dafec..8ff00471 100644 --- a/game/factions/faction.py +++ b/game/factions/faction.py @@ -356,6 +356,7 @@ class Faction: if not mod_settings.f100_supersabre: self.remove_aircraft("VSN_F100") if not mod_settings.f104_starfighter: + self.remove_aircraft("VSN_F104C") self.remove_aircraft("VSN_F104G") self.remove_aircraft("VSN_F104S") self.remove_aircraft("VSN_F104S_AG")