From 7f888433e0383ded5eaae1ffc09410d58dcdf00d Mon Sep 17 00:00:00 2001 From: Duck- Date: Mon, 17 Mar 2014 02:56:41 -0400 Subject: [PATCH] Should make damp rag smothering work. It was TOUCH, and the only chems that really do anything on TOUCH are acids. This turns the rag into a 5u reuseable autoinjector, which isn't really a big deal because autoinjectors are everywhere. This is just cooler and more flavorful. --- code/modules/detectivework/footprints_and_rag.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/detectivework/footprints_and_rag.dm b/code/modules/detectivework/footprints_and_rag.dm index e8a207ca..3e0018a5 100644 --- a/code/modules/detectivework/footprints_and_rag.dm +++ b/code/modules/detectivework/footprints_and_rag.dm @@ -30,7 +30,7 @@ /obj/item/weapon/reagent_containers/glass/rag/attack(atom/target as obj|turf|area, mob/user as mob , flag) if(ismob(target) && target.reagents && reagents.total_volume) user.visible_message("\red \The [target] has been smothered with \the [src] by \the [user]!", "\red You smother \the [target] with \the [src]!", "You hear some struggling and muffled cries of surprise") - src.reagents.reaction(target, TOUCH) + src.reagents.reaction(target, INGEST) spawn(5) src.reagents.clear_reagents() return else @@ -50,4 +50,4 @@ return usr << "That's \a [src]." usr << desc - return \ No newline at end of file + return