From f660a20f606a493601ad74681fbdfa286cc44c89 Mon Sep 17 00:00:00 2001 From: Giuseppe Guerra Date: Mon, 7 Aug 2017 21:41:48 +0200 Subject: [PATCH] Changed !mp start countdown message --- constants/fokabotCommands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/constants/fokabotCommands.py b/constants/fokabotCommands.py index 775d120..e1709bb 100644 --- a/constants/fokabotCommands.py +++ b/constants/fokabotCommands.py @@ -856,9 +856,7 @@ def multiplayer(fro, chan, message): _start() else: if t % 10 == 0 or t <= 5: - chat.sendMessage("FokaBot", chan, "Match starts in {} seconds. The match has been locked. " - "Please don't leave the match during the countdown " - "or you might receive a penalty".format(t)) + chat.sendMessage("FokaBot", chan, "Match starts in {} seconds.".format(t)) threading.Timer(1.00, _decreaseTimer, [t - 1]).start() if len(message) < 2 or not message[1].isdigit(): @@ -879,7 +877,9 @@ def multiplayer(fro, chan, message): else: _match.isStarting = True threading.Timer(1.00, _decreaseTimer, [startTime - 1]).start() - return "Match starts in {} seconds".format(startTime) + return "Match starts in {} seconds. The match has been locked. " \ + "Please don't leave the match during the countdown " \ + "or you might receive a penalty.".format(startTime) def mpInvite(): if len(message) < 2: