diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2016-12-09 15:14:00 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-12-09 15:14:00 +0100 |
| commit | c2ac816d3c153ebc2de69074c3b6410296b94efb (patch) | |
| tree | a6d4d73b095802b1d4fe237f401023954961acac | |
| parent | d5500931cd5d37c8c7bd13a9dc008ceadf4a430f (diff) | |
| download | Vainbot-c2ac816d3c153ebc2de69074c3b6410296b94efb.tar.gz Vainbot-c2ac816d3c153ebc2de69074c3b6410296b94efb.zip | |
mixed up true & false
| -rw-r--r-- | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |
