From 1128c2d12e016450ec0aadd2433d53b50b0d39ff Mon Sep 17 00:00:00 2001 From: iloveloopers Date: Sat, 15 Jun 2024 13:06:34 -0400 Subject: [PATCH] density --- code/game/machinery/fuelcell_recycler.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/fuelcell_recycler.dm b/code/game/machinery/fuelcell_recycler.dm index 2a0c1da7222e..12ae7c40f80f 100644 --- a/code/game/machinery/fuelcell_recycler.dm +++ b/code/game/machinery/fuelcell_recycler.dm @@ -3,8 +3,10 @@ desc = "A large machine with whirring fans and two cylindrical holes in the top. Used to regenerate fuel cells." icon = 'icons/obj/structures/machinery/fusion_eng.dmi' icon_state = "recycler" - density = TRUE active_power_usage = 15000 + unslashable = TRUE + unacidable = TRUE + indestructible = TRUE ///How much to recharge the cells per process var/recharge_amount = 5 @@ -18,6 +20,11 @@ QDEL_NULL(cell_left) QDEL_NULL(cell_right) +/obj/structure/machinery/fuelcell_recycler/ex_act(severity) + if(indestructible) + return + . = ..() + /obj/structure/machinery/fuelcell_recycler/get_examine_text(mob/user) . = ..() . += SPAN_INFO("It is [machine_processing ? "online" : "offline"].")