summaryrefslogtreecommitdiff
path: root/infrastructure/init.lua
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2016-01-10 02:14:35 -0600
committercheapie <no-email-for-you@example.com>2016-01-10 02:14:35 -0600
commit8b614bf8365a491299d4fdc33e4c45ab741ecfa0 (patch)
tree1cd403830671e5fc6252c3a85fafb202ee2b3d8f /infrastructure/init.lua
parentf45815cbdc9b8bd38da48f25eac3dfc26fc13621 (diff)
downloadroads-8b614bf8365a491299d4fdc33e4c45ab741ecfa0.tar
roads-8b614bf8365a491299d4fdc33e4c45ab741ecfa0.tar.gz
roads-8b614bf8365a491299d4fdc33e4c45ab741ecfa0.tar.bz2
roads-8b614bf8365a491299d4fdc33e4c45ab741ecfa0.tar.xz
roads-8b614bf8365a491299d4fdc33e4c45ab741ecfa0.zip
Add infrastructure as normal content
It will be developed as part of this mod now.
Diffstat (limited to 'infrastructure/init.lua')
-rw-r--r--infrastructure/init.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/infrastructure/init.lua b/infrastructure/init.lua
new file mode 100644
index 0000000..8b79b00
--- /dev/null
+++ b/infrastructure/init.lua
@@ -0,0 +1,24 @@
+-- Load settings
+dofile(minetest.get_modpath("infrastructure").."/settings.lua")
+
+-- Register nodes
+dofile(minetest.get_modpath("infrastructure").."/nodes.lua")
+-- Register special nodes
+dofile(minetest.get_modpath("infrastructure").."/nodes_extension.lua")
+-- Register advanced devices
+dofile(minetest.get_modpath("infrastructure").."/advanced_road_signs.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_emergency_phone.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_traffic_lights_pedestrians.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_crosswalk_warning_light.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_lane_control_lights.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_curve_chevron.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_crosswalk_lighting.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_crosswalk_safety_sign.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_automatic_warning_device.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_boom_barrier.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_aircraft_warning_light.lua")
+dofile(minetest.get_modpath("infrastructure").."/advanced_warning_light.lua")
+-- Register crafting recipes
+dofile(minetest.get_modpath("infrastructure").."/crafts.lua")
+
+print("Infrastructure mod loaded succesfully!")