Skip to content

Commit

Permalink
Use standard ECM range for Watchdog/Nova CEWS
Browse files Browse the repository at this point in the history
The current rules state that the Watchdog and Nova operate as standard
Clan-spec ECM Suites, meaning they have a range of six hexes.
  • Loading branch information
Saklad5 committed Oct 12, 2023
1 parent e685195 commit 5b96ff1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions megamek/src/megamek/common/Entity.java
Original file line number Diff line number Diff line change
Expand Up @@ -5299,9 +5299,7 @@ public int getECMRange() {
&& (this instanceof BattleArmor)) {
toReturn = 2;
}
if (type.hasFlag(MiscType.F_EW_EQUIPMENT)
|| type.hasFlag(MiscType.F_NOVA)
|| type.hasFlag(MiscType.F_WATCHDOG)) {
if (type.hasFlag(MiscType.F_EW_EQUIPMENT)) {
toReturn = 3;
}
if (game.getPlanetaryConditions().hasEMI()) {
Expand Down

0 comments on commit 5b96ff1

Please sign in to comment.