Rename Moss Stone to Mossy Cobblestone
This commit is contained in:
parent
f91619cae1
commit
2e09febaae
8 changed files with 14 additions and 15 deletions
|
@ -2765,7 +2765,7 @@ local function register_decorations()
|
|||
rotation = "0",
|
||||
})
|
||||
|
||||
-- Moss stone boulder (3×3)
|
||||
-- Mossy cobblestone boulder (3×3)
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"mcl_core:podzol", "mcl_core:dirt", "mcl_core:coarse_dirt"},
|
||||
|
@ -2785,7 +2785,7 @@ local function register_decorations()
|
|||
flags = "place_center_x, place_center_z",
|
||||
})
|
||||
|
||||
-- Small moss stone boulder (2×2)
|
||||
-- Small mossy cobblestone boulder (2×2)
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"mcl_core:podzol", "mcl_core:dirt", "mcl_core:coarse_dirt"},
|
||||
|
|
|
@ -253,7 +253,7 @@ minetest.register_on_generated(function(minp, maxp)
|
|||
local p_pos = area:index(tx, ty, tz)
|
||||
|
||||
-- Do not overwrite nodes with is_ground_content == false (e.g. bedrock)
|
||||
-- Exceptions: cobblestone and moss stone so neighborings dungeons nicely connect to each other
|
||||
-- Exceptions: cobblestone and mossy cobblestone so neighborings dungeons nicely connect to each other
|
||||
local name = minetest.get_name_from_content_id(data[p_pos])
|
||||
if name == "mcl_core:cobble" or name == "mcl_core:mossycobble" or minetest.registered_nodes[name].is_ground_content then
|
||||
-- Floor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue