From 88edf50be3bac885c09a67a95c304f1f7d22a987 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Fri, 21 Jul 2017 22:45:20 -0700 Subject: [PATCH] Agh why did it stick spaces in there --- code/game/objects/items/weapons/soap.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/weapons/soap.dm b/code/game/objects/items/weapons/soap.dm index eeb417d3bd2..d7db1e64185 100644 --- a/code/game/objects/items/weapons/soap.dm +++ b/code/game/objects/items/weapons/soap.dm @@ -29,9 +29,9 @@ else if(target == user && user.a_intent == INTENT_GRAB && ishuman(target)) var/mob/living/carbon/human/muncher = user if(muncher && muncher.get_species() == "Drask") - to_chat(user, "You take a bite of the [src.name]. Delicious!") - playsound(user.loc, 'sound/items/eatfood.ogg', 50, 0) - user.nutrition += 2 + to_chat(user, "You take a bite of the [src.name]. Delicious!") + playsound(user.loc, 'sound/items/eatfood.ogg', 50, 0) + user.nutrition += 2 else if(istype(target,/obj/effect/decal/cleanable)) user.visible_message("[user] begins to scrub \the [target.name] out with [src].") if(do_after(user, src.cleanspeed, target = target) && target)