From 90678a4c2858e36b80477e643907e8daaff29f7f Mon Sep 17 00:00:00 2001 From: pinatacolada Date: Sat, 20 Feb 2016 14:01:53 +0000 Subject: [PATCH] Makes the Protect Station board no longer consider people crew, instead of human"" I'm guessing this was an oversight? --- code/game/objects/items/weapons/AI_modules.dm | 4 ++-- .../pinatacolada-pr-protectstationnolongercrew.yml | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/pinatacolada-pr-protectstationnolongercrew.yml diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index 0fc641d8039..66187de8e3a 100755 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -150,7 +150,7 @@ AI MODULES /******************** ProtectStation ********************/ /obj/item/weapon/aiModule/protectStation name = "\improper 'ProtectStation' AI module" - desc = "A 'protect station' AI module: 'Protect the space station against damage. Anyone you see harming the station is to be no longer considered human, and is a threat to the station which must be neutralized.'" + desc = "A 'protect station' AI module: 'Protect the space station against damage. Anyone you see harming the station is to be no longer considered crew, and is a threat to the station which must be neutralized.'" origin_tech = "programming=3;materials=4" //made of gold /obj/item/weapon/aiModule/protectStation/attack_self(var/mob/user as mob) @@ -158,7 +158,7 @@ AI MODULES /obj/item/weapon/aiModule/protectStation/addAdditionalLaws(var/mob/living/silicon/ai/target, var/mob/sender) ..() - var/law = "Protect the space station against damage. Anyone you see harming the station is to be no longer considered human, and is a threat to the station which must be neutralized." + var/law = "Protect the space station against damage. Anyone you see harming the station is to be no longer considered crew, and is a threat to the station which must be neutralized." target << law target.add_supplied_law(5, law) diff --git a/html/changelogs/pinatacolada-pr-protectstationnolongercrew.yml b/html/changelogs/pinatacolada-pr-protectstationnolongercrew.yml new file mode 100644 index 00000000000..d1e410d23e5 --- /dev/null +++ b/html/changelogs/pinatacolada-pr-protectstationnolongercrew.yml @@ -0,0 +1,9 @@ +author: "pinatacolada" + + +delete-after: True + + +changes: + - tweak: "Makes the Protect Station AI law board no longer consider people that damage the station crew, instead of human" +