Skip to content

Commit

Permalink
fixing stats in balls give (#332)
Browse files Browse the repository at this point in the history
* fixing stats in balls give

* fixing stats in balls give
  • Loading branch information
imtherealF1 authored Aug 19, 2024
1 parent 6fb73ba commit c5d906d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ballsdex/packages/balls/cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,9 @@ async def give(
trade = await Trade.create(player1=old_player, player2=new_player)
await TradeObject.create(trade=trade, ballinstance=countryball, player=old_player)

cb_txt = countryball.description(
short=True, include_emoji=True, bot=self.bot, is_trade=True
cb_txt = (
countryball.description(short=True, include_emoji=True, bot=self.bot, is_trade=True)
+ f" (`{countryball.attack_bonus:+}%/{countryball.health_bonus:+}%`)"
)
await interaction.followup.send(
f"You just gave the {settings.collectible_name} {cb_txt} to {user.mention}!"
Expand Down

0 comments on commit c5d906d

Please sign in to comment.