From e2db1c583803488fa658e347b6910e9fef32f7f6 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Mon, 25 Jul 2016 03:47:30 -0400 Subject: [PATCH] tweaks --- code/game/machinery/iv_drip.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 9c074a76c42..fb55eee1200 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -96,7 +96,6 @@ beaker = W to_chat(user, "You attach [W] to [src].") update_icon() - return else return ..() @@ -105,7 +104,7 @@ if(!attached) return PROCESS_KILL - if(!(get_dist(src, attached) <= 1 && isturf(attached.loc))) + if(get_dist(src, attached) > 1 && isturf(attached.loc)) to_chat(attached, "The IV drip needle is ripped out of you!") attached.apply_damage(3, BRUTE, pick("r_arm", "l_arm")) attached = null @@ -196,7 +195,7 @@ set src in view(1) if(!iscarbon(usr)) - usr << "You can't do that!" + to_chat(usr, "You can't do that!") return if(usr.incapacitated())