Skip to content

Commit

Permalink
Update fishing.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonyrewind authored Feb 10, 2024
1 parent ed1e88d commit 6aeed19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions data-otservbr-global/scripts/actions/other/fishing.lua
Original file line number Diff line number Diff line change
Expand Up @@ -118,16 +118,20 @@ function fishing.onUse(player, item, fromPosition, target, toPosition, isHotkey)
local rareChance = math.random(100)
if rareChance == 1 then
player:addItem(7158, 1)
player:addAchievementProgress("Exquisite Taste", 250)
return true
elseif rareChance <= 4 then
player:addItem(3580, 1)
player:addAchievementProgress("Exquisite Taste", 250)
return true
elseif rareChance <= 10 then
player:addItem(7159, 1)
player:addAchievementProgress("Exquisite Taste", 250)
return true
end
end
player:addItem(3578, 1)
player:addAchievementProgress("Here, Fishy Fishy!", 250)
end
return true
end
Expand Down

0 comments on commit 6aeed19

Please sign in to comment.