Removed blocks from inventory

master
Joshua 2017-12-14 09:40:23 -05:00 committed by GitHub
parent 65e665c50c
commit 7dc600c32e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -11,9 +11,8 @@ for _, name in ipairs(characters) do --do this for all characters in the list
minetest.register_node("ehlphabet:"..byte, {
description = "Ehlphabet Block \'"..name.."\'",
tiles = {"ehlphabet_"..file..".png"},
groups = {cracky=3}
groups = {cracky=3,not_in_creative_inventory=1,not_in_crafting_guide=1}
})
-- uncomment this line to revert written blocks to blank blocks
minetest.register_craft ({ type="shapeless", output = "ehlphabet:block", recipe = {"ehlphabet:"..byte} })
end