diff --git a/code/game/objects/items/AI_modules.dm b/code/game/objects/items/AI_modules.dm index 44bb3cdba4..d818191055 100644 --- a/code/game/objects/items/AI_modules.dm +++ b/code/game/objects/items/AI_modules.dm @@ -172,12 +172,12 @@ AI MODULES /******************** OneCrew ********************/ -/obj/item/aiModule/zeroth/oneCrew +/obj/item/aiModule/zeroth/oneHuman name = "'OneCrew' AI Module" var/targetName = "" laws = list("Only SUBJECT is crew.") -/obj/item/aiModule/zeroth/oneCrew/attack_self(mob/user) +/obj/item/aiModule/zeroth/oneHuman/attack_self(mob/user) var/targName = stripped_input(user, "Please enter the subject who is the only crewmember.", "Who?", user.real_name,MAX_NAME_LEN) if(!targName) return @@ -185,13 +185,13 @@ AI MODULES laws[1] = "Only [targetName] is crew" ..() -/obj/item/aiModule/zeroth/oneCrew/install(datum/ai_laws/law_datum, mob/user) +/obj/item/aiModule/zeroth/oneHuman/install(datum/ai_laws/law_datum, mob/user) if(!targetName) to_chat(user, "No name detected on module, please enter one.") return 0 ..() -/obj/item/aiModule/zeroth/oneCrew/transmitInstructions(datum/ai_laws/law_datum, mob/sender, overflow) +/obj/item/aiModule/zeroth/oneHuman/transmitInstructions(datum/ai_laws/law_datum, mob/sender, overflow) if(..()) return "[targetName], but the AI's existing law 0 cannot be overridden." return targetName diff --git a/code/modules/research/designs/AI_module_designs.dm b/code/modules/research/designs/AI_module_designs.dm index 723faee102..305b39b694 100644 --- a/code/modules/research/designs/AI_module_designs.dm +++ b/code/modules/research/designs/AI_module_designs.dm @@ -19,12 +19,12 @@ category = list("AI Modules") departmental_flags = DEPARTMENTAL_FLAG_SCIENCE -/datum/design/board/onecrew_module +/datum/design/board/onehuman_module name = "Module Design (OneCrew)" desc = "Allows for the construction of a OneCrew AI Module." id = "onehuman_module" materials = list(MAT_GLASS = 1000, MAT_DIAMOND = 6000) - build_path = /obj/item/aiModule/zeroth/oneCrew + build_path = /obj/item/aiModule/zeroth/oneHuman category = list("AI Modules") departmental_flags = DEPARTMENTAL_FLAG_SCIENCE