Nerfs wizard minswap (#51480)

* nerfs mindswap

* E

* fucking hell sure
This commit is contained in:
EdgeLordExe
2020-06-24 10:48:51 -04:00
committed by GitHub
parent c9ae054dee
commit d85ce73676
@@ -39,6 +39,16 @@
if(stand.summoner)
victim = stand.summoner
//You should not be able to enter one of the most powerful side-antags as a fucking wizard.
if(istype(victim,/mob/living/simple_animal/slaughter))
to_chat(user, "<span class='warning'>The devilish contract doesn't include the 'mind swappable' package, please try again another lifetime.</span>")
return
//You should not be able to enter a statue that is nearly indestructible
if(HAS_TRAIT_FROM(victim, TRAIT_MUTE, STATUE_MUTE)) // that means it is a statue okay?
to_chat(user, "<span class='warning'>Your mind leaves your body but the stone resists your influence!/span>")
return
//MIND TRANSFER BEGIN
var/mob/dead/observer/ghost = victim.ghostize()
user.mind.transfer_to(victim)