Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
BenCos17 committed Oct 26, 2024
1 parent d39c7ac commit dbb6381
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bell/bell.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ async def ringbell(self, ctx):
# Update the count for this specific user in the config
await self.config.guild(guild).user_bell_counts.set_raw(user.id, value=user_bell_count)

# Append the updated count message
# Append the updated count messages from stats
message += f"You have now rung the bell {user_bell_count} times in this server. 🔔"

# Send the single message with the GIF embedded and a clickable link
gif_url = "https://github.com/BenCos17/ben-cogs/blob/main/bell/bell.gif?raw=true"
await ctx.send(message + f"\n[Click here to see the GIF]({gif_url})\n{gif_url}") # Embed the GIF and provide a clickable link
await ctx.send(message + f"\n[Click here to see the GIF]({gif_url})") # Include the GIF URL as a clickable link

@commands.command(aliases=['resetbell'])
async def reset_bell(self, ctx):
Expand Down

0 comments on commit dbb6381

Please sign in to comment.