Removes holdover text from Mindshields. (#18069)

* flavoredit

* booleaning
This commit is contained in:
Mitchs98
2022-06-25 14:10:25 -05:00
committed by GitHub
parent f0084c7adf
commit f41a25fd48
@@ -25,15 +25,15 @@
to_chat(target, "<span class='warning'>You feel the corporate tendrils of Nanotrasen try to invade your mind!</span>")
else
to_chat(target, "<span class='notice'>Your mind feels hardened - more resistant to brainwashing.</span>")
return 1
return 0
return TRUE
return FALSE
/obj/item/implant/mindshield/removed(mob/target, silent = 0)
if(..())
if(target.stat != DEAD && !silent)
to_chat(target, "<span class='boldnotice'>You feel a sense of liberation as Nanotrasen's grip on your mind fades away.</span>")
return 1
return 0
to_chat(target, "<span class='boldnotice'>Your mind softens. You feel susceptible to the effects of brainwashing once more.</span>")
return TRUE
return FALSE
/obj/item/implanter/mindshield