From 5eaf31c767631fda2f20ff95b1d6c3b822b3ded1 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 7 Feb 2016 17:27:12 +1030 Subject: [PATCH] Fixed rag behavior; hold an item in hand to wash it. --- code/modules/detectivework/tools/rag.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/detectivework/tools/rag.dm b/code/modules/detectivework/tools/rag.dm index 300c48ee4c3..6887ef1fbaf 100644 --- a/code/modules/detectivework/tools/rag.dm +++ b/code/modules/detectivework/tools/rag.dm @@ -143,7 +143,7 @@ return if(!on_fire && istype(A) && (src in user)) - if(A.is_open_container()) + if(A.is_open_container() && !(A in user)) remove_contents(user, A) else if(!ismob(A)) //mobs are handled in attack() - this prevents us from wiping down people while smothering them. wipe_down(A, user)