From a81942408846c0a520a2f4e5c7e9dc0717a8b22b Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Wed, 30 Mar 2022 14:53:58 -0700 Subject: [PATCH] Fixes recycler runtime on emergency stop --- code/game/machinery/recycler.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/recycler.dm b/code/game/machinery/recycler.dm index 21ef8e2dcf..3cfac29749 100644 --- a/code/game/machinery/recycler.dm +++ b/code/game/machinery/recycler.dm @@ -123,7 +123,7 @@ living_detected = living_detected || AM nom += AM else if(isliving(AM)) - living_detected = living_detected || TRUE + living_detected = living_detected || AM crunchy_nom += AM var/not_eaten = to_eat.len - nom.len - crunchy_nom.len if(living_detected) // First, check if we have any living beings detected.