From 9cb83d03b59138a7933d79073ca0f26402bf6a87 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Sat, 20 Dec 2025 13:58:50 +0000 Subject: [PATCH] have scythe pick up items --- hoes.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hoes.lua b/hoes.lua index 511ab0a..8dc921a 100644 --- a/hoes.lua +++ b/hoes.lua @@ -364,6 +364,12 @@ core.register_tool("farming:scythe_mithril", { on_use = function(itemstack, placer, pointed_thing) + -- if punching entity/object + if pointed_thing.type == "object" then + pointed_thing.ref:punch(placer, 1, {full_punch_interval = 1.0}) + return itemstack + end + if pointed_thing.type ~= "node" then return end local pos = pointed_thing.under