From 3650a943a4b02834bc5516bc4e29f684f90101f0 Mon Sep 17 00:00:00 2001 From: dearmochi Date: Mon, 7 Jun 2021 21:16:23 +0200 Subject: [PATCH] AIs can no longer be pushed in disposal chutes (#16136) --- code/modules/recycling/sortingmachinery.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index ab2843a4763..07c92cb8b0a 100755 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -286,7 +286,7 @@ return /obj/machinery/disposal/deliveryChute/Bumped(atom/movable/AM) //Go straight into the chute - if(istype(AM, /obj/item/projectile)) return + if(istype(AM, /obj/item/projectile) || isAI(AM)) return switch(dir) if(NORTH) if(AM.loc.y != src.loc.y+1) return