summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 4c7ad07..b5fdf28 100644
--- a/main.py
+++ b/main.py
@@ -124,10 +124,10 @@ async def on_message(message):
if msg.startswith("play with me") or msg.startswith("who can play"):
if msg.startswith("play with me"):
when = message.content[len("play with me"):]
- notify = False
+ notify = True
else:
when = message.content[len("who can play"):]
- notify = True
+ notify = False
response = await search_teammates(message.author, when, notify)
await cli.send_message(message.channel, response)