Merge changes from bananach.space

This commit is contained in:
Blockhead 2022-02-22 19:24:19 +11:00
commit 081047ad83
3 changed files with 43 additions and 6 deletions

View File

@ -7,3 +7,4 @@ maple?
moreores?
minetest_errata?
technic?
bakedclay?

View File

@ -29,6 +29,10 @@ list_default = {
"default:desert_sandstone_brick",
-- added 2018-10-26
"default:cobble",
-- added 2021-04-04
"default:steelblock",
"default:obsidianbrick",
}
list_moreblocks = {
@ -40,11 +44,14 @@ list_moreblocks = {
-- added 2019-01-19
"moreblocks:split_stone_tile",
"moreblocks:split_stone_tile_alt",
}
list_ethereal = {
"ethereal:icebrick",
"ethereal:bamboo_dirt" }
"ethereal:bamboo_dirt"
}
-- added 2018-10-16
@ -53,7 +60,11 @@ list_errata= {
"minetest_errata:mossy_stone_tile",
"minetest_errata:mossystone",
"minetest_errata:sandstone_cobble",
"minetest_errata:silver_sandstone_cobble", }
"minetest_errata:silver_sandstone_cobble",
-- added 2021-08-16
"minetest_errata:flint_block",
}
-- wood
@ -63,7 +74,9 @@ list_wood= {
"default:aspen_wood",
"default:junglewood",
"default:pine_wood",
"default:wood" }
"default:wood"
}
list_wood_ethereal = {
@ -78,6 +91,7 @@ list_wood_ethereal = {
-- added 2020-01-12
"ethereal:olive_wood",
"ethereal:sakura_wood",
}
@ -85,11 +99,14 @@ list_wood_maple = {
"maple:maple_wood" }
-- metal blocks
list_moreores = {
"moreores:mithril_block" }
"moreores:mithril_block",
-- added 2021-04-04
"moreores:silver_block",
}
-- wool
@ -100,9 +117,22 @@ list_moreores = {
-- technic - added 2019-03-11
list_technic = {
"technic:marble" }
"technic:marble" ,
--added 2021-09-24
"moretrees:rubber_tree_planks",
}
-- baked clay - added 2021-04-04
-- only darker colours, or the yellow line will not be good visible
-- currently only gray, because it does not create a colour contrast
list_baked_clay = {
"bakedclay:grey",
"bakedclay:dark_grey",
}
for _,name in pairs(list_default) do
register_platform(own_name,name)
@ -158,6 +188,12 @@ if minetest.get_modpath("technic") then
end
end
if minetest.get_modpath("bakedclay") then
for _,name in pairs(list_baked_clay) do
register_platform(own_name,name)
end
end
local woodpath_lengths = {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 678 B

After

Width:  |  Height:  |  Size: 673 B