write something there

This commit is contained in:
N-Nachtigal 2025-05-04 16:01:41 +02:00
commit b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions

View file

@ -0,0 +1,17 @@
return function(award)
local oghou = farming.hoe_on_use
farming.hoe_on_use = function(itemstack, user, pointed_thing, uses)
local retval = oghou(itemstack, user, pointed_thing, uses)
if retval ~= nil then
awards.unlock(user:get_player_name(),award)
end
return retval
end
return {
title = "It's Honest Work",
description = "Till soil for farming using a hoe",
difficulty = 40,
icon = "farming_tool_stonehoe.png",
}
end