From c2ac816d3c153ebc2de69074c3b6410296b94efb Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 9 Dec 2016 15:14:00 +0100 Subject: mixed up true & false --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.py') 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) -- cgit v1.3.1