mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-06-28 06:30:34 +02:00
buckets of oil and syrup should work in mineclone now
This commit is contained in:
@ -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
|
@ -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
|
Reference in New Issue
Block a user