Skip to content

Commit

Permalink
Merge pull request #4839 from Saklad5/lifeboat-fix
Browse files Browse the repository at this point in the history
Correct atmospheric lifeboat data
  • Loading branch information
HammerGS authored Oct 20, 2023
2 parents c47521b + e7e602e commit 1329420
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions megamek/src/megamek/common/MiscType.java
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 1329420

Please sign in to comment.