Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

Commit

Permalink
🔧Fixed echo command
Browse files Browse the repository at this point in the history
  • Loading branch information
mmattbtw committed Mar 26, 2021
1 parent 46ad5b5 commit 41fcbbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ lib/bot/statcord.txt
lib/bot/trackergg api.txt
.idea
pyproject.toml
poetry.lock
poetry.lock
.DS_store
2 changes: 1 addition & 1 deletion lib/cogs/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async def echo_message(self, ctx, *, message):
if patreonRole in member.roles:
# If they are, run the command.
await ctx.message.delete()
await ctx.start(message)
await ctx.send(message)
print(f"{ctx.author.name} used the Echo command and said {message}")

# This else is for if they are in the server, but not a Patron
Expand Down

0 comments on commit 41fcbbd

Please sign in to comment.