diff --git a/megamek/src/megamek/common/Entity.java b/megamek/src/megamek/common/Entity.java index 8eadc3bfda6..737709aa033 100644 --- a/megamek/src/megamek/common/Entity.java +++ b/megamek/src/megamek/common/Entity.java @@ -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()) {