From 8fca4a3ba3071b3e013e14636cd9df3dfcc2ec1b Mon Sep 17 00:00:00 2001 From: ziro Date: Sun, 27 Aug 2023 09:52:25 +0700 Subject: [PATCH] fix: Don't use nerfed loot table by default --- src/zibot/exts/fun/fun.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zibot/exts/fun/fun.py b/src/zibot/exts/fun/fun.py index 337868b..4c4cf77 100644 --- a/src/zibot/exts/fun/fun.py +++ b/src/zibot/exts/fun/fun.py @@ -408,7 +408,7 @@ async def clap(self, ctx, *, text: str = ""): @app_commands.rename(gold=_("barter-gold")) @app_commands.rename(lootTable=_("barter-loot-table")) @commands.cooldown(5, 25, type=commands.BucketType.user) - async def barter(self, ctx, gold: ClampedRange[int, 1, 2240] = 64, lootTable: str = "nerfed"): + async def barter(self, ctx, gold: ClampedRange[int, 1, 2240] = 64, lootTable: str = "before nerf"): trade = Piglin(gold, lootTable=1 if lootTable.lower() == "nerfed" else 0) items = {}