From a893fc2c689f858075c0ae056a15bf03e74a5a46 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 9 Jul 2022 04:26:27 +0200 Subject: [PATCH] [MIRROR] Removes upload boards from steal objectives. [MDB IGNORE] (#14809) * Removes upload boards from steal objectives. (#68204) * Update objective_items.dm * I always forget one thing. * Removes upload boards from steal objectives. Co-authored-by: carshalash --- code/game/gamemodes/objective_items.dm | 28 ------------------- .../antagonists/traitor/objectives/steal.dm | 2 -- 2 files changed, 30 deletions(-) diff --git a/code/game/gamemodes/objective_items.dm b/code/game/gamemodes/objective_items.dm index 7b0c0360c62..0c8d23cdfdc 100644 --- a/code/game/gamemodes/objective_items.dm +++ b/code/game/gamemodes/objective_items.dm @@ -34,34 +34,6 @@ /datum/objective_item/steal/low_risk objective_type = OBJECTIVE_ITEM_TYPE_TRAITOR -/datum/objective_item/steal/low_risk/techboard - name = "the (TECH BOARD) circuitboard in secure tech storage" - var/circuitboard_name - excludefromjob = list( - JOB_CAPTAIN, - JOB_CHIEF_ENGINEER, - JOB_RESEARCH_DIRECTOR, - ) - exists_on_map = TRUE - -/datum/objective_item/steal/low_risk/techboard/aiupload - targetitem = /obj/item/circuitboard/computer/aiupload - circuitboard_name = "ai upload" - -/obj/item/circuitboard/computer/aiupload/add_stealing_item_objective() - ADD_STEAL_ITEM(src, /obj/item/circuitboard/computer/aiupload) - -/datum/objective_item/steal/low_risk/techboard/borgupload - targetitem = /obj/item/circuitboard/computer/borgupload - circuitboard_name = "cyborg upload" - -/obj/item/circuitboard/computer/borgupload/add_stealing_item_objective() - ADD_STEAL_ITEM(src, /obj/item/circuitboard/computer/borgupload) - -/datum/objective_item/steal/low_risk/techboard/New() - . = ..() - name = replacetext(name, "(TECH BOARD)", circuitboard_name) - /datum/objective_item/steal/low_risk/aicard targetitem = /obj/item/aicard name = "an intelliCard" diff --git a/code/modules/antagonists/traitor/objectives/steal.dm b/code/modules/antagonists/traitor/objectives/steal.dm index 4a3d062857f..c0bb7f5a015 100644 --- a/code/modules/antagonists/traitor/objectives/steal.dm +++ b/code/modules/antagonists/traitor/objectives/steal.dm @@ -85,8 +85,6 @@ GLOBAL_DATUM_INIT(steal_item_handler, /datum/objective_item_handler, new()) telecrystal_reward = 0 minutes_per_telecrystal = 6 possible_items = list( - /datum/objective_item/steal/low_risk/techboard/borgupload, - /datum/objective_item/steal/low_risk/techboard/aiupload, /datum/objective_item/steal/low_risk/aicard, )