diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-02-01 19:38:00 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-02-01 19:38:00 -0700 |
commit | 43b10262fcb89c90eceb8dff253f541cb4dc67f3 (patch) | |
tree | 4327a24789546e68de7140a95a472e765a68261e | |
parent | 86be9d099e21b2a48b66f3e9c8b546a3ba186e0c (diff) |
make use of the digtron_protected group to protect filled crates
-rw-r--r-- | node_crate.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node_crate.lua b/node_crate.lua index 99fa270..170b258 100644 --- a/node_crate.lua +++ b/node_crate.lua @@ -56,7 +56,7 @@ minetest.register_node("digtron:loaded_crate", { description = "Digtron Crate (Loaded)", _doc_items_longdesc = digtron.doc.loaded_crate_longdesc, _doc_items_usagehelp = digtron.doc.loaded_crate_usagehelp, - groups = {cracky = 3, oddly_breakable_by_hand=3, not_in_creative_inventory=1, digtron=1}, + groups = {cracky = 3, oddly_breakable_by_hand=3, not_in_creative_inventory=1, digtron_protected=1}, stack_max = 1, sounds = default.node_sound_wood_defaults(), tiles = {"digtron_plate.png^digtron_crate.png"}, |