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()