diff --git a/code/game/objects/items/weapons/implants/implant_mindshield.dm b/code/game/objects/items/weapons/implants/implant_mindshield.dm index 312f8f78bac..97b02c2546d 100644 --- a/code/game/objects/items/weapons/implants/implant_mindshield.dm +++ b/code/game/objects/items/weapons/implants/implant_mindshield.dm @@ -25,15 +25,15 @@ to_chat(target, "You feel the corporate tendrils of Nanotrasen try to invade your mind!") else to_chat(target, "Your mind feels hardened - more resistant to brainwashing.") - 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, "You feel a sense of liberation as Nanotrasen's grip on your mind fades away.") - return 1 - return 0 + to_chat(target, "Your mind softens. You feel susceptible to the effects of brainwashing once more.") + return TRUE + return FALSE /obj/item/implanter/mindshield