From 03fcfaaef8127ec3b58db27c6e4fe225f8e084a2 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Sat, 9 May 2020 02:23:35 -0400 Subject: [PATCH] tweak --- code/modules/reagents/reagent_containers/applicator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/applicator.dm b/code/modules/reagents/reagent_containers/applicator.dm index 652b358b8fb..3ae12d696b2 100644 --- a/code/modules/reagents/reagent_containers/applicator.dm +++ b/code/modules/reagents/reagent_containers/applicator.dm @@ -103,7 +103,7 @@ return if(alert(usr, "Are you sure you want to empty [src]?", "Empty Applicator:", "Yes", "No") != "Yes") return - if(isturf(usr.loc) && loc == usr) + if(!usr.incapacitated() && isturf(usr.loc) && loc == usr) to_chat(usr, "You empty [src] onto the floor.") reagents.reaction(usr.loc) reagents.clear_reagents()