write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
17
mods/asuna/asuna_awards/awards/its_honest_work.lua
Normal file
17
mods/asuna/asuna_awards/awards/its_honest_work.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue