fix: limit cinder flour churn

This commit is contained in:
Emerson Rosen-Jones 2026-01-03 01:10:06 -05:00
parent 0f208f77f2
commit ede34829a9

View file

@ -26,7 +26,12 @@ local GLOBAL_LIMS = {
upper = 10 * 64,
}
local LIMIT_EXCEPTIONS = {}
local LIMIT_EXCEPTIONS = {
["create:cinder_flour"] = {
lower = 64,
upper = 2 * 64,
},
}
-- if these exist, they will be used up
local PRODUCTS = {
@ -72,8 +77,8 @@ local RECIPES = {
},
["minecraft:netherrack"] = {
ingredients = {
{"create:cinder_flour", 63},
{"minecraft:cobblestone", 63},
{"create:cinder_flour", 64},
{"minecraft:cobblestone", 64},
},
addr = MIXER_ADDR,
},