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."