diff options
author | Joshua <ehlodex@users.noreply.github.com> | 2017-12-14 09:40:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-14 09:40:23 -0500 |
commit | 7dc600c32e711a8e817e21cbf705f03173eae3ba (patch) | |
tree | fe9b5abd5116bcb7c49f54abb304a5bbd71fc761 | |
parent | 65e665c50cef03f04663275aeee4964da3c93baf (diff) |
Removed blocks from inventory
-rw-r--r-- | init.lua | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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
|