Fixes Consciousness Transfer potions not working on basic mobs (#30570)

This commit is contained in:
PollardTheDragon
2025-09-28 16:31:43 +00:00
committed by GitHub
parent e4b5e22917
commit fd6b5a6d5a
@@ -315,7 +315,7 @@
if(prompted || !ismob(target))
return FALSE
var/mob/M = target
if(!isanimal(M) || M.ckey) //much like sentience, these will not work on something that is already player controlled
if(!isanimal_or_basicmob(M) || M.ckey) // much like sentience, these will not work on something that is already player controlled
to_chat(user, "<span class='warning'>[M] already has a higher consciousness!</span>")
return FALSE
if(M.stat)