diff options
author | Zefram <zefram@fysh.org> | 2014-07-07 18:17:04 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-09 09:17:44 +0200 |
commit | 5e7c47a619167dd5a699fceefe2cb5fddc0057d9 (patch) | |
tree | 25b56b15dec0d03f49233aadfb7ca7a363b4ca13 | |
parent | 5ec2d10dbcaad1ab1e1c6ff5982227b52d1a936f (diff) |
Exclude technic:nothing from creative inventory
-rw-r--r-- | technic/crafts.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/technic/crafts.lua b/technic/crafts.lua index 1776de5..63792f4 100644 --- a/technic/crafts.lua +++ b/technic/crafts.lua @@ -162,6 +162,7 @@ minetest.register_craft({ minetest.register_craftitem("technic:nothing", { description = "", inventory_image = "blank.png", + groups = { not_in_creative_inventory = 1 }, }) if minetest.register_craft_predict then |