Skip to content

Commit

Permalink
fix validation message for RISC laser pulse module
Browse files Browse the repository at this point in the history
  • Loading branch information
SJuliez committed Oct 31, 2024
1 parent 347ab66 commit 440dd26
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 440dd26

Please sign in to comment.