smart_light/overrides.lua
2026-02-12 12:21:21 +01:00

23 lines
1.4 KiB
Lua

-- Hier können beliebig viele Lampen registriert werden
minetest.register_on_mods_loaded(function()
smart_light.register_lamp_control("myschool:light")
smart_light.register_lamp_control("morelights_modern:walllamp")
smart_light.register_lamp_control("morelights_modern:post_d")
smart_light.register_lamp_control("morelights_modern:post_l")
smart_light.register_lamp_control("morelights_modern:barlight_c")
smart_light.register_lamp_control("morelights_modern:barlight_s")
smart_light.register_lamp_control("morelights_modern:ceilinglight")
smart_light.register_lamp_control("morelights_modern:canlight_d")
smart_light.register_lamp_control("morelights_modern:canlight_l")
smart_light.register_lamp_control("morelights_modern:tablelamp_d")
smart_light.register_lamp_control("morelights_modern:tablelamp_l")
smart_light.register_lamp_control("morelights_modern:pathlight_d")
smart_light.register_lamp_control("morelights_modern:pathlight_l")
smart_light.register_lamp_control("morelights_vintage:lantern_f")
smart_light.register_lamp_control("morelights_vintage:lantern_c")
smart_light.register_lamp_control("morelights_vintage:lantern_w")
smart_light.register_lamp_control("morelights_vintage:hangingbulb")
smart_light.register_lamp_control("morelights_vintage:chandelier")
-- smart_light.register_lamp_control("andere_mod:lampe")
end)