From 5f7a4c4e69571d147f8f2b1e9c21b98b4c44ff7f Mon Sep 17 00:00:00 2001 From: mineymonkey Date: Thu, 13 Aug 2026 16:21:57 +0000 Subject: [PATCH] Prolathe, Circuit Imprinter, and Mech Fab Fix (#23044) Fixed the bug where the prolathe, circuit imprinter, and mech fabricator still required matter bins in their construction. --- .../items/weapons/circuitboards/machinery/research.dm | 3 --- html/changelogs/mineymonkey research machine bugfix.yml | 6 ++++++ 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/mineymonkey research machine bugfix.yml diff --git a/code/game/objects/items/weapons/circuitboards/machinery/research.dm b/code/game/objects/items/weapons/circuitboards/machinery/research.dm index f0910824d23..c0318d94ba6 100644 --- a/code/game/objects/items/weapons/circuitboards/machinery/research.dm +++ b/code/game/objects/items/weapons/circuitboards/machinery/research.dm @@ -55,7 +55,6 @@ board_type = BOARD_MACHINE origin_tech = list(TECH_ENGINEERING = 2, TECH_DATA = 2) req_components = list( - "/obj/item/stock_parts/matter_bin" = 2, "/obj/item/stock_parts/manipulator" = 2, "/obj/item/reagent_containers/glass/beaker" = 2) @@ -66,7 +65,6 @@ board_type = BOARD_MACHINE origin_tech = list(TECH_ENGINEERING = 2, TECH_DATA = 2) req_components = list( - "/obj/item/stock_parts/matter_bin" = 1, "/obj/item/stock_parts/manipulator" = 1, "/obj/item/reagent_containers/glass/beaker" = 2) @@ -76,7 +74,6 @@ board_type = BOARD_MACHINE origin_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 3) req_components = list( - "/obj/item/stock_parts/matter_bin" = 2, "/obj/item/stock_parts/manipulator" = 1, "/obj/item/stock_parts/micro_laser" = 1, "/obj/item/stock_parts/console_screen" = 1) diff --git a/html/changelogs/mineymonkey research machine bugfix.yml b/html/changelogs/mineymonkey research machine bugfix.yml new file mode 100644 index 00000000000..8b2b406f9f4 --- /dev/null +++ b/html/changelogs/mineymonkey research machine bugfix.yml @@ -0,0 +1,6 @@ +author: Mineymonkey + +delete-after: True + +changes: + - bugfix: "Removed the matter bin requirements for the circuit imprinter, prolathe, and mechfabricator research boards."