From da66780a569712c23ae4f2996cfb4608a9f9d69d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 20:02:19 -0400 Subject: copy all standard Dreambuilder mods in from the old subgame (exactly as last supplied there, updates to these mods will follow later) --- streets/infrastructure/init.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 streets/infrastructure/init.lua (limited to 'streets/infrastructure/init.lua') diff --git a/streets/infrastructure/init.lua b/streets/infrastructure/init.lua new file mode 100644 index 0000000..76d94f3 --- /dev/null +++ b/streets/infrastructure/init.lua @@ -0,0 +1,26 @@ +infrastructure = {} + +-- 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!") -- cgit v1.2.3