From 898dae6dfdb0770ab21d87f3a5e5cb47cd97a031 Mon Sep 17 00:00:00 2001 From: mikomyazaki <47489928+mikomyazaki@users.noreply.github.com> Date: Wed, 30 Mar 2022 17:57:47 +0100 Subject: [PATCH] Research borgs get a multitool. (#13383) --- code/modules/mob/living/silicon/robot/robot_modules.dm | 1 + html/changelogs/research-borg-multitool.yml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 html/changelogs/research-borg-multitool.yml diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index d0f9621bc01..a440dff7987 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -842,6 +842,7 @@ var/global/list/robot_modules = list( modules += new /obj/item/device/flash(src) // Non-lethal tool that prevents any 'borg from going lethal on Crew so long as it's an option according to laws. modules += new /obj/item/crowbar/robotic(src) // Base crowbar that all 'borgs should have access to. modules += new /obj/item/storage/part_replacer(src) + modules += new /obj/item/device/multitool/robotic(src) // To enable them to connect machines that require multitools e.g. tech-processors emag = new /obj/item/hand_tele(src) var/datum/matter_synth/nanite = new /datum/matter_synth/nanite(10000) diff --git a/html/changelogs/research-borg-multitool.yml b/html/changelogs/research-borg-multitool.yml new file mode 100644 index 00000000000..d872f1f172c --- /dev/null +++ b/html/changelogs/research-borg-multitool.yml @@ -0,0 +1,6 @@ +author: mikomyazaki + +delete-after: True + +changes: + - tweak: "Research module borgs now have a multitool to enable them to connect machines together."