From 5b96ff161dbaec5b2de37d9680e103a7e301ccd8 Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Thu, 12 Oct 2023 14:51:20 -0500 Subject: [PATCH] Use standard ECM range for Watchdog/Nova CEWS The current rules state that the Watchdog and Nova operate as standard Clan-spec ECM Suites, meaning they have a range of six hexes. --- megamek/src/megamek/common/Entity.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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()) {