From 91301ca1cd6abf79d6c35fa4b881fe715315f784 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 2 Sep 2020 16:39:54 -0500 Subject: [PATCH] generic messages for admin shenanigan use --- code/game/objects/items/implants/implant_slave.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/implants/implant_slave.dm b/code/game/objects/items/implants/implant_slave.dm index 563b9f1e..bdd8b9d1 100644 --- a/code/game/objects/items/implants/implant_slave.dm +++ b/code/game/objects/items/implants/implant_slave.dm @@ -50,8 +50,9 @@ if(target.mind in SSticker.mode.cult) to_chat(target, "You feel something interfering with your mental conditioning, but you resist it!") else - to_chat(target, "You feel a sense of peace and security. You are now enslaved to security.") - brainwash(target, "[(target.client?.prefs.lewdchem?"Obey all of security's commands, and be the perfect pet.":"Obey all of security's commands.")]") + to_chat(target, "You feel a sense of peace and security. You are now enslaved!") + var/slave_objective = "[(target.client?.prefs.lewdchem?"Obey all of security's commands, and be the perfect pet.":"Obey all of security's commands.")]" + brainwash(target, slave_objective) target.sec_hud_set_implants() return TRUE return FALSE @@ -63,7 +64,7 @@ target.mind.remove_antag_datum(/datum/antagonist/brainwashed) L.sec_hud_set_implants() if(target.stat != DEAD && !silent) - to_chat(target, "Your mind suddenly feels free from burden. You are no longer enslaved to security.") + to_chat(target, "Your mind suddenly feels free from burden. You are no longer enslaved!") return 1 return 0