Skip to content

Commit

Permalink
Can no longer Mind Transferrance potion into abnormalities (#2509)
Browse files Browse the repository at this point in the history
Update xenobiology.dm
  • Loading branch information
Kitsunemitsu authored Oct 22, 2024
1 parent 0910e90 commit e53725b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/research/xenobiology/xenobiology.dm
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@
/obj/item/slimepotion/transference/afterattack(mob/living/M, mob/living/user, proximity)
if(!proximity)
return
if(prompted || !ismob(M))
if(prompted || !ismob(M) || isabnormalitymob(M))
return
if(!isanimal(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>")
Expand Down

0 comments on commit e53725b

Please sign in to comment.