diff --git a/megamek/src/megamek/common/MiscType.java b/megamek/src/megamek/common/MiscType.java index 0456763e39a..ca36a1db3fe 100644 --- a/megamek/src/megamek/common/MiscType.java +++ b/megamek/src/megamek/common/MiscType.java @@ -1773,7 +1773,7 @@ public static void initializeTypes() { EquipmentType.addType(MiscType.createLadder()); EquipmentType.addType(MiscType.createMaritimeLifeboat()); EquipmentType.addType(MiscType.createMaritimeEscapePod()); - EquipmentType.addType(MiscType.createAtmossphericLifeboat()); + EquipmentType.addType(MiscType.createAtmosphericLifeboat()); // 3145 Stuff EquipmentType.addType(MiscType.createAntiPenetrativeAblation()); @@ -6054,13 +6054,13 @@ public static MiscType createMaritimeLifeboat() { // Down the road it might be better to make this into a separate Small // Support Vee, // But for now leaving it as equipment. - public static MiscType createAtmossphericLifeboat() { + public static MiscType createAtmosphericLifeboat() { MiscType misc = new MiscType(); misc.name = "Lifeboat (Atmospheric)"; misc.setInternalName(misc.name); misc.tankslots = 0; - misc.tonnage = 7; - misc.cost = 5000; + misc.tonnage = 1; + misc.cost = 6000; misc.bv = 0; misc.industrial = true; misc.flags = misc.flags.or(F_SUPPORT_TANK_EQUIPMENT).or(F_LIFEBOAT);