mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Fixes Consciousness Transfer potions not working on basic mobs (#30570)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user