fixed problem with slabs for LinuxForks

master
Och Noe 2022-08-30 21:25:11 +02:00
parent 2999b62ed3
commit beaf93e916
1 changed files with 7 additions and 4 deletions

View File

@ -271,7 +271,7 @@ local woodpath_lengths = {
} }
-- path crossing track -- path crossing track aka "level crossing"
local snowdef = minetest.registered_nodes['default:snowblock'] local snowdef = minetest.registered_nodes['default:snowblock']
local node_sound_snow_default = nil local node_sound_snow_default = nil
@ -291,17 +291,20 @@ table.insert(nodelist, { name = "wood",
tile = "default_wood.png", tile = "default_wood.png",
sound = default.node_sound_wood_defaults(), sound = default.node_sound_wood_defaults(),
full = "default:wood", full = "default:wood",
half = "stairs:slab_wood" } ) half = "morevlocks:slab_wood" } ) -- fixed
-- half = "stairs:slab_wood" } )
table.insert(nodelist, { name = "cobble", table.insert(nodelist, { name = "cobble",
tile = "default_cobble.png", tile = "default_cobble.png",
sound = default.node_sound_stone_defaults(), sound = default.node_sound_stone_defaults(),
full = "default:cobble", full = "default:cobble",
half = "stairs:slab_cobble" } ) half = "moreblocks:slab_cobble" } ) -- fixed
-- half = "stairs:slab_cobble" } )
table.insert(nodelist, { name = "stonebrick", table.insert(nodelist, { name = "stonebrick",
tile = "default_stone_brick.png", tile = "default_stone_brick.png",
sound = default.node_sound_stone_defaults(), sound = default.node_sound_stone_defaults(),
full = "default:stonebrick", full = "default:stonebrick",
half = "stairs:slab_stonebrick" } ) half = "moreblocks:slab_stonebrick" } ) -- fixed
-- half = "stairs:slab_stonebrick" } )
table.insert(nodelist, { name = "snow", tile = "default_snow.png", table.insert(nodelist, { name = "snow", tile = "default_snow.png",
sound = node_sound_snow_default, sound = node_sound_snow_default,
full = "default:snowblock", full = "default:snowblock",