Skip to content

Commit

Permalink
fix personal merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
SJuliez committed Sep 22, 2024
1 parent 393ef5b commit 0b2466f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megamek/src/megamek/common/weapons/ACCaselessHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected boolean doChecks(Vector<Report> vPhaseReport) {
return true;
}

if ((roll.getIntValue() <= 2) && !(ae instanceof Infantry)) {
if ((roll.getIntValue() <= 2) && !ae.isConventionalInfantry()) {
Roll diceRoll = Compute.rollD6(2);

Report r = new Report(3164);
Expand Down

0 comments on commit 0b2466f

Please sign in to comment.