From 37cf41a3bbac902e373f918938760cb8f226a087 Mon Sep 17 00:00:00 2001 From: Ghommie Date: Thu, 4 Jul 2019 22:06:16 +0200 Subject: [PATCH] Ports "Fixes damp rag not smothering people" --- code/modules/reagents/reagent_containers/glass.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index 9bc6bef8a5..9d10b9356a 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -53,7 +53,7 @@ /obj/item/reagent_containers/glass/afterattack(obj/target, mob/user, proximity) . = ..() - if((!proximity) || !check_allowed_items(target,target_self=1)) + if((!proximity) || !spillable || !check_allowed_items(target,target_self=1)) return if(target.is_refillable()) //Something like a glass. Player probably wants to transfer TO it.