From 49e4363cd9973827514fd2b3da8b5fb37f42d79d Mon Sep 17 00:00:00 2001 From: Dystroyer8 Date: Sun, 19 Jul 2026 00:57:47 +0200 Subject: [PATCH] Fix unified ATM10 brass ingot ID --- create_factory_scheduler.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/create_factory_scheduler.lua b/create_factory_scheduler.lua index c0cc082..5437ec9 100644 --- a/create_factory_scheduler.lua +++ b/create_factory_scheduler.lua @@ -1,7 +1,7 @@ -- ATM10 Create factory scheduler V1 -- Persistent jobs, dependency planning, progress-aware retries and diagnostics. -local VERSION = "1.4.0" +local VERSION = "1.4.1" local REFRESH_SECONDS = 1 local CONFIRM_SECONDS = 6 local DRAIN_SECONDS = 60 @@ -86,7 +86,7 @@ local RECIPES = { label = "64 BRASS CASINGS", station = "casing", address = "casing", inputs = { { item = "minecraft:stripped_oak_log", count = 64 }, - { item = "create:brass_ingot", count = 64 }, + { item = "alltheores:brass_ingot", count = 64 }, }, output = "create:brass_casing", outputCount = 64, targetCount = 64, }, @@ -120,7 +120,7 @@ local RECIPES = { }, press_brass = { label = "64 BRASS PLATES", stations = { "presse:1", "presse:2", "presse:3", "presse:4", "presse:5", "presse:6" }, - input = "create:brass_ingot", inputCount = 64, + input = "alltheores:brass_ingot", inputCount = 64, output = "alltheores:brass_plate", outputCount = 64, targetCount = 64, }, press_zinc = {