Skip to content

Commit

Permalink
Merge pull request #4840 from Saklad5/drogue-fix
Browse files Browse the repository at this point in the history
Fix refueling drogue name and data
  • Loading branch information
HammerGS authored Oct 20, 2023
2 parents 1329420 + a3d3c12 commit 941de44
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 941de44

Please sign in to comment.