From fd6b5a6d5a89a8ea12ea586193b8fdb8343f1782 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Sun, 28 Sep 2025 12:31:43 -0400 Subject: [PATCH] Fixes Consciousness Transfer potions not working on basic mobs (#30570) --- code/modules/research/xenobiology/xenobiology.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index 7f4678a9123..7ad147bc507 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -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, "[M] already has a higher consciousness!") return FALSE if(M.stat)