Skip to content

Commit

Permalink
Fix refueling drogue name and data
Browse files Browse the repository at this point in the history
Interstellar Operations: Alternate Eras has conflicting availability
ratings for the refueling drogue which presumably take precedence over
TechManual. Both agree the technology rating is C rather than A, at any
rate.

The fluid suction system has already been implemented separately.
  • Loading branch information
Saklad5 committed Oct 18, 2023
1 parent 7f2ca7a commit a3d3c12
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions megamek/src/megamek/common/MiscType.java
Original file line number Diff line number Diff line change
Expand Up @@ -7559,14 +7559,15 @@ public static MiscType createRefuelingDrogue() {
MiscType misc = new MiscType();
misc.tonnage = 1;
misc.cost = 25000;
misc.name = "Refueling Drogue/Fluid Suction System (Aero)";
misc.name = "Refueling Drogue";
misc.setInternalName(EquipmentTypeLookup.REFUELING_DROGUE);
misc.flags = misc.flags.or(F_REFUELING_DROGUE).or(F_FIGHTER_EQUIPMENT).or(F_VTOL_EQUIPMENT)
.or(F_SUPPORT_TANK_EQUIPMENT).or(F_SC_EQUIPMENT);
misc.industrial = true;
misc.rulesRefs = "247, TM";
misc.techAdvancement.setTechBase(TECH_BASE_ALL).setIntroLevel(false).setUnofficial(false)
.setTechRating(RATING_A).setAvailability(RATING_A, RATING_A, RATING_A, RATING_A)
// IO:AE, page 36, 3rd printing
.setTechRating(RATING_C).setAvailability(RATING_A, RATING_A, RATING_A, RATING_A)
.setISAdvancement(DATE_PS, DATE_PS, DATE_PS, DATE_NONE, DATE_NONE)
.setISApproximate(false, false, false, false, false)
.setClanAdvancement(DATE_PS, DATE_PS, DATE_PS, DATE_NONE, DATE_NONE)
Expand Down

0 comments on commit a3d3c12

Please sign in to comment.