From 12d17f6f525f1aa127222075a29038857ddedd22 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Mon, 15 Apr 2019 11:28:42 -0500 Subject: [PATCH] usr --- code/game/machinery/iv_drip.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 15b27a4ee1..7284b3c738 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -80,13 +80,13 @@ if(!target.has_dna()) to_chat(usr, "The drip beeps: Warning, incompatible creature!") return - + var/mob/living/L if(isliving(target)) L = target - if(!L.can_inject(user, 1)) + if(!L.can_inject(usr, 1)) return - + if(Adjacent(target) && usr.Adjacent(target)) if(beaker) usr.visible_message("[usr] attaches [src] to [target].", "You attach [src] to [target].")