techage/items/filling.lua
2021-06-29 19:55:23 +02:00

12 lines
332 B
Lua

-- Needed for the trowel
techage.FILLING_ITEMS = {}
for name, ndef in pairs(minetest.registered_nodes) do
-- test if it is a simple node without logic
if ndef and not ndef.groups.soil and name ~= "default:cobble" and
not ndef.after_place_node and not ndef.on_construct then
table.insert(techage.FILLING_ITEMS, name)
end
end