buckets of oil and syrup should work in mineclone now

This commit is contained in:
FaceDeer
2022-08-07 12:34:59 -06:00
parent 3df518fc16
commit b1cbe64c7a
6 changed files with 67 additions and 43 deletions

View File

@ -23,7 +23,7 @@ if minetest.get_modpath("vessels") then
n18 = { name = "df_trees:glowing_bottle_red", force_place=true}
end
if not minetest.get_modpath("stairs") then
if not df_dependencies.node_name_stair_goblin_cap_stem_wood then
-- replace stairs with air
n3 = n1
n20 = n1
@ -31,7 +31,7 @@ if not minetest.get_modpath("stairs") then
n22 = n1
end
return {
local schematic = {
yslice_prob = {},
size = {y = 9, x = 11, z = 11},
center_pos = {x=5, y=2, z=5},
@ -246,3 +246,9 @@ return {
n1, n1, n1, n1, n1, n1, n1, n1, n1, n1, n1,
}
}
for index, node in ipairs(schematic.data) do
assert(node.name ~= nil, "undefined node name for index " .. tostring(index) .. " in goblin_cap_big_hut schematic data")
end
return schematic

View File

@ -35,7 +35,7 @@ if not minetest.get_modpath("stairs") then
n22 = nil
end
return {
local schematic = {
yslice_prob = {},
size = {y = 10, x = 13, z = 13},
center_pos = {x=6, y=2, z=6},
@ -314,3 +314,9 @@ return {
n1, n1, n1, n1, n1, n1, n1, n1, n1, n1, n1, n1, n1,
}
}
for index, node in ipairs(schematic.data) do
assert(node.name ~= nil, "undefined node name for index " .. tostring(index) .. " in goblin_cap_bigger_hut schematic data")
end
return schematic