summaryrefslogtreecommitdiff
path: root/farming/hoes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'farming/hoes.lua')
-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,