Update pool_drain.dm

This commit is contained in:
kevinz000
2020-01-27 22:23:21 -07:00
committed by GitHub
parent 171d50caff
commit bc05819cee
+2 -2
View File
@@ -47,9 +47,9 @@
/obj/machinery/pool/drain/process()
if(!filling)
for(var/obj/item/I in range(min(item_suction_range, 10), src))
if(!I.anchored && (I.w_class == WEIGHT_CLASS_SMALL))
if(!I.anchored && (I.w_class <= WEIGHT_CLASS_SMALL))
step_towards(I, src)
if((I.w_class == WEIGHT_CLASS_TINY) && (get_dist(I, src) == 0))
if((I.w_class <= WEIGHT_CLASS_TINY) && (get_dist(I, src) == 0))
I.forceMove(controller.linked_filter)
if(active)
if(filling)