From 85cad6b4ac82de1e28e846ee1818ccd533940bd0 Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 27 Nov 2019 20:14:37 -0500 Subject: [PATCH] Fixing one of two fuckups --- code/game/mecha/equipment/tools/work_tools.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/mecha/equipment/tools/work_tools.dm b/code/game/mecha/equipment/tools/work_tools.dm index 7f2447ad..a2222fa2 100644 --- a/code/game/mecha/equipment/tools/work_tools.dm +++ b/code/game/mecha/equipment/tools/work_tools.dm @@ -498,8 +498,8 @@ N.step_energy_drain = M.step_energy_drain //For the scanning module N.armor = N.armor.setRating(energy = M.armor["energy"]) //for the capacitor for(var/obj/item/mecha_parts/E in M.contents) - if(istype(E, /obj/item/mecha_parts/concealed_weapon_bay)) //why is the bay not just a variable change who did this - E.forceMove(N) +// if(istype(E, /obj/item/mecha_parts/concealed_weapon_bay)) //why is the bay not just a variable change who did this +// E.forceMove(N) for(var/obj/item/mecha_parts/mecha_equipment/E in M.equipment) //Move the equipment over... E.detach() E.attach(N)