From 1414aafb6624b610f68c5d2b78f1015ef8745f6d Mon Sep 17 00:00:00 2001 From: Milo Weinberg Date: Sat, 13 Jul 2024 21:29:17 -0400 Subject: [PATCH] Nerf melon & bees effect on farming --- bot/cogs/commands/econ.py | 2 +- common/data/data.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/cogs/commands/econ.py b/bot/cogs/commands/econ.py index 8446f9c0..16d8a476 100644 --- a/bot/cogs/commands/econ.py +++ b/bot/cogs/commands/econ.py @@ -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) diff --git a/common/data/data.json b/common/data/data.json index e01aa137..c077dab3 100644 --- a/common/data/data.json +++ b/common/data/data.json @@ -1855,8 +1855,8 @@ 2 ], "melon": [ - 2, - 5 + 1, + 3 ], "potato": [ 1,