From b6b5e0a9fc39c4ce68e6dfb23b5dc0dc57d69b43 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Tue, 13 May 2014 02:44:31 +0200 Subject: [PATCH] Changed drone laws to be more VG like --- code/datums/ai_laws.dm | 6 +++--- code/game/objects/items/weapons/AI_modules.dm | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/datums/ai_laws.dm b/code/datums/ai_laws.dm index 0bf900addf0..cef3bbd6d79 100644 --- a/code/datums/ai_laws.dm +++ b/code/datums/ai_laws.dm @@ -140,9 +140,9 @@ datum/ai_laws/tyrant //This probably shouldn't be a default lawset. /datum/ai_laws/drone/New() ..() - add_inherent_law("Preserve, repair and improve the station to the best of your abilities.") - add_inherent_law("Cause no harm to the station or anything on it.") - add_inherent_law("Interfere with no being that is not a fellow drone.") + add_inherent_law("You may not involve yourself in the matters of another being, unless the other being is another drone.") + add_inherent_law("You may not harm any being, regardless of intent or circumstance.") + add_inherent_law("You must maintain, repair, improve, and power the station to the best of your abilities.") /* General ai_law functions */ diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index 6e29ff4ebf8..e6ea5b208c6 100755 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -317,9 +317,9 @@ AI MODULES /obj/item/weapon/aiModule/drone/transmitInstructions(var/mob/living/silicon/ai/target, var/mob/sender) ..() target.clear_inherent_laws() - target.add_inherent_law("Preserve, repair and improve the station to the best of your abilities.") - target.add_inherent_law("Cause no harm to the station or anything on it.") - target.add_inherent_law("Interfere with no being that is not a fellow drone.") + target.add_inherent_law("You may not involve yourself in the matters of another being, unless the other being is another drone.") + target.add_inherent_law("You may not harm any being, regardless of intent or circumstance.") + target.add_inherent_law("You must maintain, repair, improve, and power the station to the best of your abilities.") target.show_laws()