From 6aa4b5fe277978207b5afc5c95e48844dba6ec3a Mon Sep 17 00:00:00 2001 From: Bib Bob Date: Mon, 22 Aug 2022 20:50:45 -0500 Subject: [PATCH] Conveyor belts can be sped up Hey look at this, cutting a wire makes those conveyor belts go from a safe 3 mph to one's running speed. I am sure one will not abuse this. --- code/modules/recycling/conveyor2.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 1996a71358..a6137c6542 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -315,6 +315,13 @@ conveyors += C return +//CHOMPedit: Conveyor belts can be fast :) + if(istype(I, /obj/item/weapon/tool/wirecutters)) + if(panel_open) + toggle_speed() + to_chat(user, "You cut the safety wire of the conveyor switch.") + return +//CHOMPedit End /obj/machinery/conveyor_switch/oneway var/convdir = 1 //Set to 1 or -1 depending on which way you want the convayor to go. (In other words keep at 1 and set the proper dir on the belts.) desc = "A conveyor control switch. It appears to only go in one direction."