Skip to content

Commit

Permalink
Merge pull request #6237 from psikomonkie/issue-3018-BA-plasma-rifle-…
Browse files Browse the repository at this point in the history
…opt-rule-not-applied

Issue 3018: Fixes Battle Armor Plasma Rifles not applying TacOps opti…
  • Loading branch information
HammerGS authored Dec 2, 2024
2 parents 8bfe368 + b7a1cac commit de6de40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megamek/src/megamek/common/Compute.java
Original file line number Diff line number Diff line change
Expand Up @@ -6639,7 +6639,7 @@ public static int directBlowBADamage(double damage, int damageType,
case WeaponType.WEAPON_PLASMA:
// If the target is fire-resistant BA, damage is normal
if (!target.isFireResistant()) {
damage = 1 + Compute.d6(1);
damage = 2 + Compute.d6(1);
}
break;
}
Expand Down

0 comments on commit de6de40

Please sign in to comment.