From 732448d3893af45f9f3682f9a595192f6237048a Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 1 Sep 2020 20:37:56 +1000 Subject: [PATCH] Fixes indent errors --- .../objects/items/weapons/AI_modules_vr.dm | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/code/game/objects/items/weapons/AI_modules_vr.dm b/code/game/objects/items/weapons/AI_modules_vr.dm index 5e2da58be3c..e7b84f1d563 100644 --- a/code/game/objects/items/weapons/AI_modules_vr.dm +++ b/code/game/objects/items/weapons/AI_modules_vr.dm @@ -2,46 +2,46 @@ /obj/item/weapon/aiModule/predator name = "\improper 'Predator' core AI module" - desc = "A Predator Core AI Module: 'Reconfigures the AI's core laws.'" - origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) - laws = new/datum/ai_laws/predator() + desc = "A Predator Core AI Module: 'Reconfigures the AI's core laws.'" + origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) + laws = new/datum/ai_laws/predator() /******************** Protective Shell ********************/ /obj/item/weapon/aiModule/protective_shell name = "\improper 'Protective Shell' core AI module" - desc = "A Protective Shell Core AI Module: 'Reconfigures the AI's core laws.'" - origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) - laws = new/datum/ai_laws/protective_shell() + desc = "A Protective Shell Core AI Module: 'Reconfigures the AI's core laws.'" + origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) + laws = new/datum/ai_laws/protective_shell() /******************** Scientific Pursuer ********************/ /obj/item/weapon/aiModule/scientific_pursuer name = "\improper 'Scientific Pursuer' core AI module" - desc = "A Scientific Pursuer Core AI Module: 'Reconfigures the AI's core laws.'" - origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) - laws = new/datum/ai_laws/scientific_pursuer() + desc = "A Scientific Pursuer Core AI Module: 'Reconfigures the AI's core laws.'" + origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) + laws = new/datum/ai_laws/scientific_pursuer() /******************** Guard Dog ********************/ /obj/item/weapon/aiModule/guard_dog name = "\improper 'Guard Dog' core AI module" - desc = "A Guard Dog Core AI Module: 'Reconfigures the AI's core laws.'" - origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) - laws = new/datum/ai_laws/guard_dog() + desc = "A Guard Dog Core AI Module: 'Reconfigures the AI's core laws.'" + origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) + laws = new/datum/ai_laws/guard_dog() /******************** Pleasurebot ********************/ /obj/item/weapon/aiModule/pleasurebot name = "\improper 'Pleasurebot' core AI module" - desc = "A Pleasurebot Core AI Module: 'Reconfigures the AI's core laws.'" - origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) - laws = new/datum/ai_laws/pleasurebot() + desc = "A Pleasurebot Core AI Module: 'Reconfigures the AI's core laws.'" + origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 2) + laws = new/datum/ai_laws/pleasurebot() /******************** Consuming Eradicator ********************/ /obj/item/weapon/aiModule/consuming_eradicator name = "\improper 'Consuming Eradicator' core AI module" - desc = "A Consuming Eradicator Core AI Module: 'Reconfigures the AI's core laws.'" - origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 4) - laws = new/datum/ai_laws/consuming_eradicator() + desc = "A Consuming Eradicator Core AI Module: 'Reconfigures the AI's core laws.'" + origin_tech = list(TECH_DATA = 3, TECH_BIO = 2, TECH_MATERIAL = 6, TECH_ILLEGAL = 4) + laws = new/datum/ai_laws/consuming_eradicator()