diff options
-rw-r--r-- | depends.txt | 1 | ||||
-rw-r--r-- | init.lua | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt index 27976a9..49190b5 100644 --- a/depends.txt +++ b/depends.txt @@ -5,3 +5,4 @@ ethereal? maple? moreores? minetest_errata? +technic? @@ -89,6 +89,13 @@ list_moreores = { -- ? +-- technic - added 2019-03-11 + +list_technic = { + "technic:marble" } + + + for _,name in pairs(list_default) do advtrains.register_platform(own_name,name) end @@ -135,3 +142,14 @@ if minetest.get_modpath("moreores") then advtrains.register_platform(own_name,name) end end + + +if minetest.get_modpath("technic") then + for _,name in pairs(list_technic) do + advtrains.register_platform(own_name,name) + end +end + + + + |