mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-08 08:23:51 +01:00
Add compressor recipes for nether racks (#644)
This commit is contained in:
parent
a9079c49e0
commit
6731db14e5
@ -30,6 +30,8 @@ local dependent_crafts_to_clear = {
|
|||||||
nether = {
|
nether = {
|
||||||
"nether:brick",
|
"nether:brick",
|
||||||
"nether:brick_compressed",
|
"nether:brick_compressed",
|
||||||
|
"nether:rack",
|
||||||
|
"nether:rack_deep",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,17 +47,16 @@ end
|
|||||||
|
|
||||||
-- Clear recipes
|
-- Clear recipes
|
||||||
for _, craft_name in ipairs(crafts_to_clear) do
|
for _, craft_name in ipairs(crafts_to_clear) do
|
||||||
local is_regular = string.sub(craft_name, 1, 7) ~= "nether:"
|
-- Regular bricks are 2x2 shaped, nether bricks are 3x3 shaped (irregular)
|
||||||
|
local is_regular = string.sub(craft_name, 1, 12) ~= "nether:brick"
|
||||||
local shaped_recipe
|
local shaped_recipe
|
||||||
|
|
||||||
if is_regular then
|
if is_regular then
|
||||||
-- Regular compression recipes use 2x2 shape.
|
|
||||||
shaped_recipe = {
|
shaped_recipe = {
|
||||||
{craft_name, craft_name},
|
{craft_name, craft_name},
|
||||||
{craft_name, craft_name},
|
{craft_name, craft_name},
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
-- Nether's compression recipes use 3x3 shape.
|
|
||||||
shaped_recipe = {
|
shaped_recipe = {
|
||||||
{craft_name, craft_name, craft_name},
|
{craft_name, craft_name, craft_name},
|
||||||
{craft_name, craft_name, craft_name},
|
{craft_name, craft_name, craft_name},
|
||||||
@ -99,6 +100,8 @@ local dependent_recipes = {
|
|||||||
nether = {
|
nether = {
|
||||||
{"nether:brick 9", "nether:brick_compressed"},
|
{"nether:brick 9", "nether:brick_compressed"},
|
||||||
{"nether:brick_compressed 9", "nether:nether_lump"},
|
{"nether:brick_compressed 9", "nether:nether_lump"},
|
||||||
|
{"nether:rack", "nether:brick",},
|
||||||
|
{"nether:rack_deep", "nether:brick_deep"},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user