Skip to content

Commit bd1d0b9

Browse files
authored
Fixes stuff landing in disposals through windows (#37033)
1 parent 45379c0 commit bd1d0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/modules/recycling/disposal.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
qdel(H)
457457

458458
/obj/machinery/disposal/Cross(atom/movable/mover, turf/target, height=1.5, air_group = 0)
459-
if (istype(mover,/obj/item) && mover.throwing)
459+
if (istype(mover,/obj/item) && mover.throwing && Adjacent(mover))
460460
var/obj/item/I = mover
461461
if(istype(I, /obj/item/weapon/dummy) || istype(I, /obj/item/projectile))
462462
return

0 commit comments

Comments
 (0)