1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
-- all nodes that do not fit in any other category
-- Author: Och_Noe
-- Licence: LGPL 2.1
--
local own_name = "advtrains_platform"
-- bricks / blocks
list_default = {
"default:desert_sandstone_brick",
"default:desert_stonebrick",
"default:silver_sandstone_brick",
"default:brick",
"default:stone",
"default:sandstone",
"default:obsidian_glass",
"default:dirt",
"default:dirt_with_grass",
"default:desert_stone",
"default:desert_sandstone",
-- added 2018-10-16
"default:desert_sandstone_brick",
-- added 2018-10-26
"default:cobble",
}
list_moreblocks = {
"moreblocks:cactus_brick",
"moreblocks:coal_stone_bricks",
"moreblocks:grey_bricks",
"moreblocks:iron_stone_bricks",
"moreblocks:stone_tile" }
list_ethereal = {
"ethereal:icebrick",
"ethereal:bamboo_dirt" }
-- added 2018-10-16
list_errata= {
"minetest_errata:desert_sandstone_cobble",
"minetest_errata:mossy_stone_tile",
"minetest_errata:mossystone",
"minetest_errata:sandstone_cobble",
"minetest_errata:silver_sandstone_cobble", }
-- wood
list_wood= {
"default:acacia_wood",
"default:aspen_wood",
"default:junglewood",
"default:pine_wood",
"default:wood" }
list_wood_ethereal = {
"ethereal:banana_wood",
"ethereal:birch_wood",
"ethereal:frost_wood",
"ethereal:palm_wood",
"ethereal:redwood_wood",
"ethereal:willow_wood",
"ethereal:yellow_wood",
"ethereal:bamboo_floor" }
list_wood_maple = {
"maple:maple_wood" }
-- metal blocks
list_moreores = {
"moreores:mithril_block" }
-- wool
-- ?
for _,name in pairs(list_default) do
advtrains.register_platform(own_name,name)
end
if minetest.get_modpath("moreblocks") then
for _,name in pairs(list_moreblocks) do
advtrains.register_platform(own_name,name)
end
end
-- added 2018-10-16
if minetest.get_modpath("minetest_errata") then
for _,name in pairs(list_errata) do
advtrains.register_platform(own_name,name)
end
end
for _,name in pairs(list_wood) do
advtrains.register_platform(own_name,name)
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
end
if minetest.get_modpath("maple") then
for _,name in pairs(list_wood_maple) do
advtrains.register_platform(own_name,name)
end
end
if minetest.get_modpath("moreores") then
for _,name in pairs(list_moreores) do
advtrains.register_platform(own_name,name)
end
end
|