diff --git a/gen/fleet/cn_dd_group.py b/gen/fleet/cn_dd_group.py index 1485ea6c..c2b51c88 100644 --- a/gen/fleet/cn_dd_group.py +++ b/gen/fleet/cn_dd_group.py @@ -38,8 +38,8 @@ class ChineseNavyGroupGenerator(ShipGroupGenerator): if include_dd: dd_type = random.choice([Type_052C_Destroyer, Type_052B_Destroyer]) - self.add_unit(dd_type, "FF1", self.position.x + 2400, self.position.y + 900, self.heading) - self.add_unit(dd_type, "FF2", self.position.x + 2400, self.position.y - 900, self.heading) + self.add_unit(dd_type, "DD1", self.position.x + 2400, self.position.y + 900, self.heading) + self.add_unit(dd_type, "DD2", self.position.x + 2400, self.position.y - 900, self.heading) if include_cc: cc_type = random.choice([CGN_1144_2_Pyotr_Velikiy]) diff --git a/gen/fleet/ru_dd_group.py b/gen/fleet/ru_dd_group.py index b08acdf4..69d0af57 100644 --- a/gen/fleet/ru_dd_group.py +++ b/gen/fleet/ru_dd_group.py @@ -42,8 +42,8 @@ class RussianNavyGroupGenerator(ShipGroupGenerator): if include_dd: dd_type = random.choice([FFG_11540_Neustrashimy, FF_1135M_Rezky]) - self.add_unit(dd_type, "FF1", self.position.x + 2400, self.position.y + 900, self.heading) - self.add_unit(dd_type, "FF2", self.position.x + 2400, self.position.y - 900, self.heading) + self.add_unit(dd_type, "DD1", self.position.x + 2400, self.position.y + 900, self.heading) + self.add_unit(dd_type, "DD2", self.position.x + 2400, self.position.y - 900, self.heading) if include_cc: cc_type = random.choice([CG_1164_Moskva, CGN_1144_2_Pyotr_Velikiy])