1
0
zrcadlo https://github.com/minetest-mods/moreblocks.git synchronizováno 2025-09-18 20:40:37 +02:00

Commented out nodes with multiple texture layers as they're not being texture-mapped properly.

Prevented gravity affected blocks from falling.
Tento commit je obsažen v:
Tin Švagelj
2021-02-12 04:05:46 +01:00
rodič d534b66b1f
revize 001e6a6730

Zobrazit soubor

@@ -34,14 +34,14 @@ local default_nodes = { -- Default stairs/slabs/panels/microblocks:
"desert_stone",
"desert_stonebrick",
"diamondblock",
"dirt_with_coniferous_litter",
"dirt_with_dry_grass",
"dirt_with_grass_footsteps",
"dirt_with_grass",
"dirt_with_rainforest_litter",
"dirt_with_snow",
--"dirt_with_coniferous_litter",
--"dirt_with_dry_grass",
--"dirt_with_grass_footsteps",
--"dirt_with_grass",
--"dirt_with_rainforest_litter",
--"dirt_with_snow",
"dirt",
"dry_dirt_with_dry_grass",
--"dry_dirt_with_dry_grass",
"dry_dirt",
"glass",
"goldblock",
@@ -56,7 +56,7 @@ local default_nodes = { -- Default stairs/slabs/panels/microblocks:
"obsidian_glass",
"obsidian",
"obsidianbrick",
"permafrost_with_moss",
--"permafrost_with_moss",
"permafrost_with_stones",
"permafrost",
"pine_bush_needles",
@@ -104,6 +104,11 @@ for _, name in pairs(default_nodes) do
ndef.paramtype2 = nil
end
-- Microblock variants of falling nodes should not fall
if ndef.groups and ndef.groups["falling_node"] then
ndef.groups["falling_node"] = 0
end
mod = "moreblocks"
stairsplus:register_all(mod, name, nodename, ndef)
minetest.register_alias_force("stairs:stair_" .. name, mod .. ":stair_" .. name)