Limit Blaze Cake batches to egg stack size

This commit is contained in:
2026-07-20 17:22:20 +02:00
parent c780a4ec92
commit 408ced35ea
2 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -51,7 +51,8 @@ Cinder Flour verarbeitet. Egg, Sugar und Cinder Flour gehen anschliessend an die
separate Basin-Presse `presse:7` und werden zu Blaze Cake Bases kompaktiert. Die
Depot-Pressen `presse:1` bis `presse:6` bleiben ausschliesslich fuer Plates
reserviert. Fuer fertige Blaze Cakes fehlt noch eine adressierbare Filling-Station
mit 250 mB Lava pro Base.
mit 250 mB Lava pro Base. Eine Charge umfasst wegen der Stackgroesse von Eggs
genau 16 Bases.
## Create-Fabrik: Peripherie erkennen
+6 -6
View File
@@ -1,7 +1,7 @@
-- ATM10 Create factory scheduler V1
-- Persistent jobs, dependency planning, progress-aware retries and diagnostics.
local VERSION = "1.6.0"
local VERSION = "1.6.1"
local REFRESH_SECONDS = 1
local CONFIRM_SECONDS = 6
local DRAIN_SECONDS = 60
@@ -141,13 +141,13 @@ local RECIPES = {
output = "alltheores:steel_plate", outputCount = 64, targetCount = 64,
},
press_blaze_cake_base = {
label = "64 BLAZE CAKE BASES", station = "presse:7", address = "presse:7",
label = "16 BLAZE CAKE BASES", station = "presse:7", address = "presse:7",
inputs = {
{ item = "minecraft:egg", count = 64 },
{ item = "minecraft:sugar", count = 64 },
{ item = "create:cinder_flour", count = 64 },
{ item = "minecraft:egg", count = 16 },
{ item = "minecraft:sugar", count = 16 },
{ item = "create:cinder_flour", count = 16 },
},
output = "create:blaze_cake_base", outputCount = 64, targetCount = 64,
output = "create:blaze_cake_base", outputCount = 16, targetCount = 16,
},
zinc_nuggets = {
label = "576 ZINC NUGGETS", planner = "zinc_nuggets",