Compare commits

...

5 Commits

Author SHA1 Message Date
Och Noe beaf93e916 fixed problem with slabs for LinuxForks 2022-08-30 21:25:11 +02:00
Och Noe 2999b62ed3 wrong node type 2022-06-29 14:58:02 +02:00
Och Noe 2e401d2d7b both stone slabs now usable for crafting 2022-06-29 14:47:33 +02:00
Och Noe c26787a7cd second type of stone tiles added (from default) 2022-06-29 14:46:59 +02:00
Och Noe a1b620a58c typo 2021-09-24 20:49:15 +02:00
2 changed files with 9 additions and 5 deletions

View File

@ -181,7 +181,7 @@ list_moreores = {
list_technic = {
"technic:marble" ,
--added 2021-09-24
"moretrees:rubber_tree_planks".
"moretrees:rubber_tree_planks",
}
@ -271,7 +271,7 @@ local woodpath_lengths = {
}
-- path crossing track
-- path crossing track aka "level crossing"
local snowdef = minetest.registered_nodes['default:snowblock']
local node_sound_snow_default = nil
@ -291,23 +291,27 @@ table.insert(nodelist, { name = "wood",
tile = "default_wood.png",
sound = default.node_sound_wood_defaults(),
full = "default:wood",
half = "stairs:slab_wood" } )
half = "morevlocks:slab_wood" } ) -- fixed
-- half = "stairs:slab_wood" } )
table.insert(nodelist, { name = "cobble",
tile = "default_cobble.png",
sound = default.node_sound_stone_defaults(),
full = "default:cobble",
half = "stairs:slab_cobble" } )
half = "moreblocks:slab_cobble" } ) -- fixed
-- half = "stairs:slab_cobble" } )
table.insert(nodelist, { name = "stonebrick",
tile = "default_stone_brick.png",
sound = default.node_sound_stone_defaults(),
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",
sound = node_sound_snow_default,
full = "default:snowblock",
half = "stairs:slab_snowblock" } )
local adv_track = "advtrains:dtrack_placer"
if minetest.get_modpath("moreblocks") then

Binary file not shown.

Before

Width:  |  Height:  |  Size: 673 B

After

Width:  |  Height:  |  Size: 663 B