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

Commit

Permalink
Closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Retzudo committed Jul 4, 2017
1 parent f491442 commit d5330d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion servoskull/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from datetime import datetime

__version__ = 'v1.7.0'
__version__ = 'v1.7.1'

start_time = datetime.now()

Expand Down
4 changes: 4 additions & 0 deletions servoskull/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ async def on_message(message):
# Make it so that the bot can't trigger itself
return

if message.mention_everyone:
# Don't trigger on @here etc.
return

command = None
arguments = None

Expand Down

0 comments on commit d5330d9

Please sign in to comment.