Limit Blaze Cake batches to egg stack size
This commit is contained in:
@@ -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
|
separate Basin-Presse `presse:7` und werden zu Blaze Cake Bases kompaktiert. Die
|
||||||
Depot-Pressen `presse:1` bis `presse:6` bleiben ausschliesslich fuer Plates
|
Depot-Pressen `presse:1` bis `presse:6` bleiben ausschliesslich fuer Plates
|
||||||
reserviert. Fuer fertige Blaze Cakes fehlt noch eine adressierbare Filling-Station
|
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
|
## Create-Fabrik: Peripherie erkennen
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
-- ATM10 Create factory scheduler V1
|
-- ATM10 Create factory scheduler V1
|
||||||
-- Persistent jobs, dependency planning, progress-aware retries and diagnostics.
|
-- Persistent jobs, dependency planning, progress-aware retries and diagnostics.
|
||||||
|
|
||||||
local VERSION = "1.6.0"
|
local VERSION = "1.6.1"
|
||||||
local REFRESH_SECONDS = 1
|
local REFRESH_SECONDS = 1
|
||||||
local CONFIRM_SECONDS = 6
|
local CONFIRM_SECONDS = 6
|
||||||
local DRAIN_SECONDS = 60
|
local DRAIN_SECONDS = 60
|
||||||
@@ -141,13 +141,13 @@ local RECIPES = {
|
|||||||
output = "alltheores:steel_plate", outputCount = 64, targetCount = 64,
|
output = "alltheores:steel_plate", outputCount = 64, targetCount = 64,
|
||||||
},
|
},
|
||||||
press_blaze_cake_base = {
|
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 = {
|
inputs = {
|
||||||
{ item = "minecraft:egg", count = 64 },
|
{ item = "minecraft:egg", count = 16 },
|
||||||
{ item = "minecraft:sugar", count = 64 },
|
{ item = "minecraft:sugar", count = 16 },
|
||||||
{ item = "create:cinder_flour", count = 64 },
|
{ 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 = {
|
zinc_nuggets = {
|
||||||
label = "576 ZINC NUGGETS", planner = "zinc_nuggets",
|
label = "576 ZINC NUGGETS", planner = "zinc_nuggets",
|
||||||
|
|||||||
Reference in New Issue
Block a user