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