Skip to content

Commit

Permalink
Merge pull request #5798 from Sleet01/Fix_Reflective_Armor_not_availa…
Browse files Browse the repository at this point in the history
…ble_for_ASF_or_CF

Fix Reflective armor not appearing in MML dropdown
  • Loading branch information
Sleet01 authored Jul 26, 2024
2 parents 67b8065 + 39e5e79 commit d4c9991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions megamek/src/megamek/common/equipment/ArmorType.java
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ private static ArmorType createISReflective() {
armor.patchworkSlotsMechSV = 2;
armor.patchworkSlotsCVFtr = 1;
armor.flags = armor.flags.or(F_REFLECTIVE).or(F_MECH_EQUIPMENT).or(F_TANK_EQUIPMENT).or(F_VTOL_EQUIPMENT)
.or(F_SUPPORT_TANK_EQUIPMENT);
.or(F_SUPPORT_TANK_EQUIPMENT).or(F_FIGHTER_EQUIPMENT);
armor.rulesRefs = "93, TO: AU&E";
//Tech Progression tweaked to combine IntOps with TRO Prototypes/3145 NTNU RS
armor.techAdvancement.setTechBase(TECH_BASE_IS).setTechRating(RATING_E)
Expand Down Expand Up @@ -810,7 +810,7 @@ private static ArmorType createClanReflective() {
armor.patchworkSlotsMechSV = 1;
armor.patchworkSlotsCVFtr = 1;
armor.flags = armor.flags.or(F_REFLECTIVE).or(F_MECH_EQUIPMENT).or(F_TANK_EQUIPMENT).or(F_VTOL_EQUIPMENT)
.or(F_SUPPORT_TANK_EQUIPMENT);
.or(F_SUPPORT_TANK_EQUIPMENT).or(F_FIGHTER_EQUIPMENT);
armor.rulesRefs = "93, TO: AU&E";
//Tech Progression tweaked to combine IntOps with TRO Prototypes/3145 NTNU RS
armor.techAdvancement.setTechBase(TECH_BASE_CLAN).setTechRating(RATING_F)
Expand Down

0 comments on commit d4c9991

Please sign in to comment.