Skip to content

Commit

Permalink
fix: Don't use nerfed loot table by default
Browse files Browse the repository at this point in the history
  • Loading branch information
null2264 committed Aug 27, 2023
1 parent 348b3f5 commit 8fca4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zibot/exts/fun/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}
Expand Down

0 comments on commit 8fca4a3

Please sign in to comment.