summaryrefslogtreecommitdiff
path: root/simple_streetlights/init.lua
blob: ac28424691eb12d220ec5628699bae80f81ef516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- simple streetlight spawner mod

local modpath = minetest.get_modpath("simple_streetlights")

streetlights = {}
streetlights.basic_materials = minetest.get_modpath("basic_materials")
streetlights.concrete = "basic_materials:concrete_block"
streetlights.distributor = "streets:digiline_distributor"

dofile(modpath.."/simple.lua")
if minetest.get_modpath("homedecor_lighting") and minetest.get_modpath("streetspoles") then
	dofile(modpath.."/minedot.lua")
end