From 03a01fc80561ec13b5dd05e9fa766b96a72acbfc Mon Sep 17 00:00:00 2001 From: Loganbacca Date: Wed, 14 May 2014 21:55:51 +1200 Subject: [PATCH] Closet wrapping fix - Removed ability to wrap closets if you are inside them --- code/modules/recycling/sortingmachinery.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index eecba616fbe..a5eb4010197 100755 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -99,6 +99,8 @@ return if(target in user) return + if(user in target) //no wrapping closets that you are inside - it's not physically possible + return user.attack_log += text("\[[time_stamp()]\] Has used [src.name] on \ref[target]")