From beb4c31f5eb7bab420e072d541c0755e57e29c10 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sun, 13 Dec 2020 09:58:23 +0000 Subject: [PATCH] Fix bug with addressing --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index 28e6d31..caaa419 100644 --- a/game.py +++ b/game.py @@ -429,7 +429,7 @@ class Game: if text.startswith(bot_num): text = text[1:] for_me = True - if text.startswith('! '): + elif text.startswith('! '): text = text[2:] elif text.startswith('!'): text = text[1:]