summaryrefslogtreecommitdiff
path: root/farming
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2019-06-07 00:54:45 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2019-06-07 00:54:45 -0400
commitf11997ad956da3735bf118cdc43dc68b8a811b4f (patch)
tree672f9fcd0abf4b246643665375492bfce6253012 /farming
parentd4e5d04b4cc65846af7dae950e10c00eca8e2716 (diff)
downloaddreambuilder_modpack-f11997ad956da3735bf118cdc43dc68b8a811b4f.tar
dreambuilder_modpack-f11997ad956da3735bf118cdc43dc68b8a811b4f.tar.gz
dreambuilder_modpack-f11997ad956da3735bf118cdc43dc68b8a811b4f.tar.bz2
dreambuilder_modpack-f11997ad956da3735bf118cdc43dc68b8a811b4f.tar.xz
dreambuilder_modpack-f11997ad956da3735bf118cdc43dc68b8a811b4f.zip
update caverealms lite, farming redo, homedecor, pipeworks, and xban2
Diffstat (limited to 'farming')
-rw-r--r--farming/hoes.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/farming/hoes.lua b/farming/hoes.lua
index ed833e5..1b33774 100644
--- a/farming/hoes.lua
+++ b/farming/hoes.lua
@@ -24,6 +24,10 @@ farming.register_hoe = function(name, def)
def.max_uses = 30
end
+ -- add hoe group
+ def.groups = def.groups or {}
+ def.groups.hoe = 1
+
-- Register the tool
minetest.register_tool(name, {
description = def.description,