diff --git a/bot/cogs/commands/econ.py b/bot/cogs/commands/econ.py index 3b49104f..ea9c98ee 100644 --- a/bot/cogs/commands/econ.py +++ b/bot/cogs/commands/econ.py @@ -2103,9 +2103,9 @@ async def trash(self, ctx: Ctx): async def trashcan_empty(self, ctx: Ctx): total_ems, amount = await self.db.empty_trashcan(ctx.author.id) - total_ems = math.floor(total_ems) total_ems *= (await self.db.fetch_item(ctx.author.id, "Rich Person Trophy") is not None) + 1 total_ems *= (await self.db.fetch_item(ctx.author.id, "Recycler") is not None) + 1 + total_ems = math.floor(total_ems) await self.db.balance_add(ctx.author.id, total_ems)