From ba2f0f3614bc42e1a2b16e304544d0f9e05218a8 Mon Sep 17 00:00:00 2001 From: sldfgunslinger2766 <40328392+sldfgunslinger2766@users.noreply.github.com> Date: Mon, 25 Nov 2024 10:45:20 -0500 Subject: [PATCH] Corrects weight and critical slots for BNIU --- megamek/src/megamek/common/MiscType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/megamek/src/megamek/common/MiscType.java b/megamek/src/megamek/common/MiscType.java index a71343dc98..338940e017 100644 --- a/megamek/src/megamek/common/MiscType.java +++ b/megamek/src/megamek/common/MiscType.java @@ -4282,8 +4282,8 @@ public static MiscType createBattleMekNeuralInterfaceUnit() { misc.name = "Direct Neural Interface Cockpit Modification"; misc.setInternalName("BABattleMechNIU"); - misc.tonnage = 0.0; - misc.criticals = 0; + misc.tonnage = 0.100; + misc.criticals = 2; misc.cost = 500000; misc.hittable = false; misc.flags = misc.flags.or(F_MEK_EQUIPMENT).or(F_BATTLEMEK_NIU).or(F_BA_EQUIPMENT);