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