From 782b0d5411d7c97ee82cf34f2a3b2f5e9b26d4d2 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Mon, 11 Dec 2017 23:33:22 -0500 Subject: [PATCH] don't stand so close to me.. --- code/game/machinery/dye_generator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/dye_generator.dm b/code/game/machinery/dye_generator.dm index f3efd7a6c2b..f2715d7649a 100644 --- a/code/game/machinery/dye_generator.dm +++ b/code/game/machinery/dye_generator.dm @@ -106,7 +106,7 @@ dye_list += "body" var/what_to_dye = input(user, "Choose an area to apply the dye", "Dye Application") in dye_list - if(!Adjacent(user)) + if(!user.Adjacent(M)) to_chat(user, "You are too far away!") return user.visible_message("[user] starts dying [M]'s [what_to_dye]!", "You start dying [M]'s [what_to_dye]!")