Update init.lua

This commit is contained in:
Don 2016-09-23 12:58:00 -07:00 committed by GitHub
parent ac0959b730
commit 0fdc246a1b
1 changed files with 3 additions and 1 deletions

View File

@ -43,12 +43,14 @@ local air_nodes = {
for i in ipairs(air_nodes) do
local airnode = air_nodes[i][1]
minetest.register_node("mysponge:"..airnode,{
-- description = "Air 1",
description = "Air",
inventory_image = "unknown_node.png",
tiles = {"mysponge_air.png"},
drawtype = "allfaces",
walkable = false,
pointable = false,
paramtype = "light",
drop = "",
groups = {not_in_creative_inventory=1}
})
end