Merge pull request 'Don't show light nodes in creative inventory' (#3) from j-r/mcl_wieldlight:not_in_creative_inventory into main

Reviewed-on: https://codeberg.org/mineclonia/mcl_wieldlight/pulls/3
Reviewed-by: cora <cora@noreply.codeberg.org>
This commit is contained in:
cora 2024-11-09 14:54:00 +00:00
commit 7b9b5e5e43

View File

@ -15,7 +15,7 @@ for i=2,minetest.LIGHT_MAX do
buildable_to = true,
drop = "",
light_source = i,
groups = { wieldlight = i },
groups = { wieldlight = i, not_in_creative_inventory = 1 },
})
end