Skip to content

Commit

Permalink
Merge pull request #6158 from SJuliez/test-fix-lpm
Browse files Browse the repository at this point in the history
Fix validation message for RISC laser pulse module
  • Loading branch information
SJuliez authored Nov 2, 2024
2 parents 5e603d4 + 440dd26 commit 1226c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megamek/src/megamek/common/verifier/TestEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ public boolean hasIllegalEquipmentCombinations(StringBuffer buff) {
|| !(m.getLinked().getType() instanceof WeaponType)
|| !m.getLinked().getType().hasFlag(WeaponType.F_LASER)
|| m.getLinked().getType().hasFlag(WeaponType.F_PULSE))) {
buff.append("Laser insulator requires a non-pulse laser in the same location.\n");
buff.append("RISC Laser Pulse Module requires a non-pulse laser in the same location.\n");
illegal = true;
}
}
Expand Down

0 comments on commit 1226c7f

Please sign in to comment.