aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua <ehlodex@users.noreply.github.com>2017-12-14 09:40:23 -0500
committerGitHub <noreply@github.com>2017-12-14 09:40:23 -0500
commit7dc600c32e711a8e817e21cbf705f03173eae3ba (patch)
treefe9b5abd5116bcb7c49f54abb304a5bbd71fc761
parent65e665c50cef03f04663275aeee4964da3c93baf (diff)
downloadehlphabet-7dc600c32e711a8e817e21cbf705f03173eae3ba.tar.gz
ehlphabet-7dc600c32e711a8e817e21cbf705f03173eae3ba.tar.bz2
ehlphabet-7dc600c32e711a8e817e21cbf705f03173eae3ba.zip
Removed blocks from inventory
-rw-r--r--init.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 1a810ea..9d669d1 100644
--- a/init.lua
+++ b/init.lua
@@ -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