diff options
author | Och Noe <och_noe@forksworld.de> | 2018-06-27 20:35:47 +0200 |
---|---|---|
committer | Och Noe <och_noe@forksworld.de> | 2018-06-27 20:35:47 +0200 |
commit | e634a6b8022379c93fffe70a5ce4bc6e2431de3d (patch) | |
tree | 7b67c70a3aad071cff8f2aed5069286422eb6661 | |
parent | 48a76c59d5c533b7e94fb2fe9a5f2cdbe69b963a (diff) |
new:
default:dirt
moreblocks:stone_tile
ethereal:icebrick
-rw-r--r-- | init.lua | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -17,13 +17,18 @@ list_default = { "default:brick", "default:stone", "default:sandstone", - "default:obsidian_glass" } + "default:obsidian_glass", + "default:dirt" } list_moreblocks = { "moreblocks:cactus_brick", "moreblocks:coal_stone_bricks", "moreblocks:grey_bricks", - "moreblocks:iron_stone_bricks"} + "moreblocks:iron_stone_bricks", + "moreblocks:stone_tile" } + +list_ethereal = { + "ethereal:icebrick" } @@ -82,6 +87,9 @@ end if minetest.get_modpath("ethereal") then + for _,name in pairs(list_ethereal) do + advtrains.register_platform(own_name,name) + end for _,name in pairs(list_wood_ethereal) do advtrains.register_platform(own_name,name) end |