From cd734c8eca53fc92f0495f61e2d4237c2cad9401 Mon Sep 17 00:00:00 2001 From: Boggart Date: Thu, 30 Apr 2015 16:42:25 -0600 Subject: [PATCH] Fixes borg modules other than the trash bag not being able to work on disposal bins. --- code/modules/recycling/disposal.dm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 0cbd54f514f..f9896199225 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -75,13 +75,6 @@ if(stat & BROKEN || !I || !user) return - if(isrobot(user)) - if(!istype(I, /obj/item/weapon/storage/bag/trash)) - return - else - if(I.flags & NODROP) - return - src.add_fingerprint(user) if(mode<=0) // It's off if(istype(I, /obj/item/weapon/screwdriver)) @@ -130,7 +123,7 @@ stuff_mob_in(G.affecting, user) return - if(!I) return + if(!I || I.flags & NODROP) return user.drop_item() I.loc = src