From d9153f61b1e6846cc982254f059b47b4e034a4fa Mon Sep 17 00:00:00 2001 From: phil235 Date: Thu, 26 May 2016 00:42:13 +0200 Subject: [PATCH] derp --- code/game/gamemodes/changeling/powers/linglink.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/changeling/powers/linglink.dm b/code/game/gamemodes/changeling/powers/linglink.dm index 5ce526b0cc8..3b90ee14bd5 100644 --- a/code/game/gamemodes/changeling/powers/linglink.dm +++ b/code/game/gamemodes/changeling/powers/linglink.dm @@ -13,11 +13,13 @@ if(changeling.islinking) user << "We have already formed a link with the victim!" return - if(!user.pulling || !iscarbon(user.pulling)) - user << "We must be grabbing a creature to absorb them!" + if(!user.pulling) + user << "We must be tightly grabbing a creature to link with them!" + return + if(!iscarbon(user.pulling)) + user << "We cannot link with this creature!" return var/mob/living/carbon/target = user.pulling - if(!target.mind) user << "The victim has no mind to link to!" return