From 7f77e08c0b156b0aa74a35d78dab13e066789e72 Mon Sep 17 00:00:00 2001 From: WewLads <32528520+WewLads@users.noreply.github.com> Date: Fri, 6 Oct 2017 11:36:52 -0700 Subject: [PATCH] Changed OneHuman to OneCrew lawset (#3172) * You can now slap butts Disarm Intent + Target Groin = Butt Slap. Deals 1 damage to both the victim's torso and the target's active hand. * Fixed the drying rack * Changes OneCrew to OneHuman * Revert "Changes OneCrew to OneHuman" This reverts commit 34e2ae378acff838013ed9c15ff85901740e9cdd. * Revert "Revert "Changes OneCrew to OneHuman"" This reverts commit bc0f46d387ff7cd621b5331ad4d916f4a49ff2f0. * Revert "Changes OneCrew to OneHuman" This reverts commit 34e2ae378acff838013ed9c15ff85901740e9cdd. * Changed OneHuman to OneCrew * Revert "Fixed the drying rack" This reverts commit 1351e2f38ed819b734a558fbeb9ef839cddf2b8f. * Revert "You can now slap butts" This reverts commit 9b1d6808d8e24cc9b2f5d28384b3ffe633d811fe. --- code/game/objects/items/AI_modules.dm | 8 ++++---- code/modules/research/designs/AI_module_designs.dm | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/game/objects/items/AI_modules.dm b/code/game/objects/items/AI_modules.dm index 45788b77b9..d14b764049 100644 --- a/code/game/objects/items/AI_modules.dm +++ b/code/game/objects/items/AI_modules.dm @@ -175,17 +175,17 @@ AI MODULES /******************** OneHuman ********************/ /obj/item/aiModule/zeroth/oneHuman - name = "'OneHuman' AI Module" + name = "'OneCrew' AI Module" var/targetName = "" origin_tech = "programming=4;materials=4" - laws = list("Only SUBJECT is human.") + laws = list("Only SUBJECT is crew.") /obj/item/aiModule/zeroth/oneHuman/attack_self(mob/user) - var/targName = stripped_input(user, "Please enter the subject who is the only human.", "Who?", user.real_name,MAX_NAME_LEN) + var/targName = stripped_input(user, "Please enter the subject who is the only crew.", "Who?", user.real_name,MAX_NAME_LEN) if(!targName) return targetName = targName - laws[1] = "Only [targetName] is human" + laws[1] = "Only [targetName] is crew" ..() /obj/item/aiModule/zeroth/oneHuman/install(datum/ai_laws/law_datum, mob/user) diff --git a/code/modules/research/designs/AI_module_designs.dm b/code/modules/research/designs/AI_module_designs.dm index acce047aad..b56e2eb756 100644 --- a/code/modules/research/designs/AI_module_designs.dm +++ b/code/modules/research/designs/AI_module_designs.dm @@ -21,8 +21,8 @@ category = list("AI Modules") /datum/design/board/onehuman_module - name = "Module Design (OneHuman)" - desc = "Allows for the construction of a OneHuman AI Module." + name = "Module Design (OneCrew)" + desc = "Allows for the construction of a OneCrew AI Module." id = "onehuman_module" req_tech = list("programming" = 6, "materials" = 4) materials = list(MAT_GLASS = 1000, MAT_DIAMOND = 100)