From c4dfca65178d04d894d1f8ca3eb900c054c2df1e Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Tue, 5 Aug 2025 01:57:10 -0700 Subject: [PATCH] [MIRROR] Small refinery runtime (#11320) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> Co-authored-by: Cameron Lennox --- code/modules/refinery/core/industrial_reagent_grinder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/refinery/core/industrial_reagent_grinder.dm b/code/modules/refinery/core/industrial_reagent_grinder.dm index 4c1aa867d8..07f864d731 100644 --- a/code/modules/refinery/core/industrial_reagent_grinder.dm +++ b/code/modules/refinery/core/industrial_reagent_grinder.dm @@ -97,7 +97,7 @@ if(!T) continue var/obj/machinery/conveyor/C = locate() in T - if(C && !C.stat && C.operating && C.dir == GLOB.reverse_dir[D]) // If an operating conveyor points into us... Check if it's moving anything + if(C && !C.stat && C.operating && C.dir == GLOB.reverse_dir[D] && T.contents.len > 1) // If an operating conveyor points into us... Check if it's moving anything var/obj/item/I = pick(T.contents - list(C)) if(istype(I) && conveyor_load(I)) break