fix: limit cinder flour churn
This commit is contained in:
parent
0f208f77f2
commit
ede34829a9
1 changed files with 8 additions and 3 deletions
|
|
@ -26,7 +26,12 @@ local GLOBAL_LIMS = {
|
||||||
upper = 10 * 64,
|
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
|
-- if these exist, they will be used up
|
||||||
local PRODUCTS = {
|
local PRODUCTS = {
|
||||||
|
|
@ -72,8 +77,8 @@ local RECIPES = {
|
||||||
},
|
},
|
||||||
["minecraft:netherrack"] = {
|
["minecraft:netherrack"] = {
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{"create:cinder_flour", 63},
|
{"create:cinder_flour", 64},
|
||||||
{"minecraft:cobblestone", 63},
|
{"minecraft:cobblestone", 64},
|
||||||
},
|
},
|
||||||
addr = MIXER_ADDR,
|
addr = MIXER_ADDR,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue