diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 5e075177e6..7701e58616 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -135,8 +135,7 @@ GLOBAL_LIST_EMPTY(conveyors_by_id) addtimer(CALLBACK(src, .proc/convey, affecting), 1) /obj/machinery/conveyor/proc/convey(list/affecting) - var/turf/T = get_turf(src) - T = get_step(T, movedir) + var/turf/T = get_step(src, movedir) if(length(T.contents) > 150) return for(var/atom/movable/A in affecting)