Skip to content

Commit

Permalink
Nerf melon & bees effect on farming
Browse files Browse the repository at this point in the history
  • Loading branch information
Iapetus-11 committed Jul 14, 2024
1 parent 87fbe4a commit 1414aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bot/cogs/commands/econ.py
Original file line number Diff line number Diff line change
Expand Up @@ -2369,7 +2369,7 @@ async def farm_harvest(self, ctx: Ctx):

user_bees = await self.db.fetch_item(ctx.author.id, "Jar Of Bees")
user_bees = 0 if user_bees is None else user_bees.amount
extra_yield_limit = round(max(0, math.log((user_bees + 0.0001) / 64)))
extra_yield_limit = round(max(0, math.log10((user_bees + 0.0001) / 64)))

amounts_harvested = defaultdict[str, int](int)

Expand Down
4 changes: 2 additions & 2 deletions common/data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1855,8 +1855,8 @@
2
],
"melon": [
2,
5
1,
3
],
"potato": [
1,
Expand Down

0 comments on commit 1414aaf

Please sign in to comment.