1
0
mirror of https://github.com/minetest-mods/maptools.git synced 2025-07-11 19:00:20 +02:00

make lightbulbs buildable to

This commit is contained in:
wsor4035
2021-01-23 13:37:52 -05:00
committed by GitHub
parent fd9476c173
commit 31454749f4

@ -275,6 +275,7 @@ minetest.register_node("maptools:lightbulb", {
paramtype = "light", paramtype = "light",
sunlight_propagates = true, sunlight_propagates = true,
drop = "", drop = "",
buildable_to = true,
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative}, groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
on_drop = maptools.drop_msg on_drop = maptools.drop_msg
}) })