Skip to content

Commit

Permalink
docs: adjust wording of add-item-to/remove-item-for
Browse files Browse the repository at this point in the history
  • Loading branch information
AstreaTSS committed Sep 4, 2024
1 parent 8ed50a7 commit 43554bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exts/gacha/gacha_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ async def gacha_remove_item_from(
where={"id": item.id},
)

reply_str = f"Removed {amount} amount of {item.name} from {user.mention}."
reply_str = f"Removed {amount} of {item.name} from {user.mention}."
if replenish_gacha and item.amount != -1:
reply_str += f" Added {amount} back into the gacha pool."

Expand Down Expand Up @@ -910,7 +910,7 @@ async def gacha_add_item_to(
where={"id": item.id},
)

reply_str = f"Added {amount} amount of {item.name} to {user.mention}."
reply_str = f"Added {amount} of {item.name} to {user.mention}."
if remove_amount_from_gacha:
reply_str += f" Removed {amount} from the gacha pool."

Expand Down

0 comments on commit 43554bf

Please sign in to comment.