Skip to content

Commit 5271f22

Browse files
Merge pull request #307 from RemainingDelta/296-Bug
296-Bug fix redeem ticket channel not pinging the redeeming user
2 parents 7eee63c + 9b03eab commit 5271f22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

features/economy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ async def redeem(self, interaction: discord.Interaction, item: str):
999999
value=f"{int(round(balance_after)):,} R7 tokens",
10001000
inline=True,
10011001
)
1002-
await ch.send(embed=ticket_embed)
1002+
await ch.send(content=interaction.user.mention, embed=ticket_embed)
10031003

10041004
except Exception as e:
10051005
await add_item_token(user_id, item, quantity=1)

0 commit comments

Comments
 (0)