From b0955f6fe232a320d0aa85605cc6e7c81e583874 Mon Sep 17 00:00:00 2001 From: "C.L" Date: Thu, 29 Sep 2022 20:33:43 -0400 Subject: [PATCH] Wording change --- code/game/objects/items/weapons/implants/implant_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/implants/implant_vr.dm b/code/game/objects/items/weapons/implants/implant_vr.dm index 64e6218496..35b733de4f 100644 --- a/code/game/objects/items/weapons/implants/implant_vr.dm +++ b/code/game/objects/items/weapons/implants/implant_vr.dm @@ -198,11 +198,11 @@ Obviously lethal commands such as telling the subject to kill themselves or harm var/mob/living/carbon/human/target = source if(!target.nif || target.nif.stat != NIF_WORKING) //No nif or their NIF is broken. to_chat(target, "You suddenly feel compelled to follow the following commands: [laws]") - to_chat(target, "((OOC NOTE: Obviously lethal commands or commands that harm others should be disregarded.))") + to_chat(target, "((OOC NOTE: Obviously suicidal commands should be disregarded. The implant doesn't stop your self preservation.))") to_chat(target, "((OOC NOTE: Your new commands can be checked at any time by using the 'notes' command in chat. Additionally, if you did not agree to this, you are not compelled to follow the implant.))") target.add_memory(laws) return else //You got a nif...Upload time. new nif_payload(target.nif,laws) - to_chat(target, "((OOC NOTE: Obviously lethal commands or commands that harm others should be disregarded.))") + to_chat(target, "((OOC NOTE: Obviously suicidal commands should be disregarded. The implant doesn't stop your self preservation.))") to_chat(target, "((OOC NOTE: If you did not agree to this, you are not compelled to follow the laws.))") \ No newline at end of file