fix: adjust copper gen
fixes copper deadlock also added more helpful info in comments
This commit is contained in:
parent
3ec00d5c81
commit
4e2fdccc49
1 changed files with 3 additions and 3 deletions
|
|
@ -65,15 +65,15 @@ local LIMIT_EXCEPTIONS = {
|
||||||
}
|
}
|
||||||
|
|
||||||
-- if these exist, they will be used up
|
-- if these exist, they will be used up
|
||||||
-- "limit" is the limit on the amt sent at a time
|
-- "limit" is the limit on the amt sent at a time (default is 64)
|
||||||
-- "keep" is the amount not to use up
|
-- "keep" is the amount not to use up (default is 0)
|
||||||
local PRODUCTS = {
|
local PRODUCTS = {
|
||||||
{"create:crimsite", CRUSHER_ADDR},
|
{"create:crimsite", CRUSHER_ADDR},
|
||||||
{"create:crushed_raw_iron", MELTER_ADDR},
|
{"create:crushed_raw_iron", MELTER_ADDR},
|
||||||
{"create:crushed_raw_zinc", MELTER_ADDR},
|
{"create:crushed_raw_zinc", MELTER_ADDR},
|
||||||
{"create:asurine", CRUSHER_ADDR},
|
{"create:asurine", CRUSHER_ADDR},
|
||||||
{"create:crushed_raw_copper", MELTER_ADDR},
|
{"create:crushed_raw_copper", MELTER_ADDR},
|
||||||
{"create:veridium", CRUSHER_ADDR},
|
{"create:veridium", CRUSHER_ADDR, limit = 32},
|
||||||
{"create:ochrum", CRUSHER_ADDR},
|
{"create:ochrum", CRUSHER_ADDR},
|
||||||
{"create:crushed_raw_gold", MELTER_ADDR},
|
{"create:crushed_raw_gold", MELTER_ADDR},
|
||||||
{"minecraft:sand", WASHER_ADDR},
|
{"minecraft:sand", WASHER_ADDR},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue