From b2b1d87949fec38c40f3aa05dc25e8ab4902b7b7 Mon Sep 17 00:00:00 2001 From: Alex Orid Date: Mon, 16 Nov 2020 16:59:55 -0500 Subject: [PATCH] Fixed Command Typo --- commands/implemented/command_tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/implemented/command_tts.py b/commands/implemented/command_tts.py index 305e1cf..133d851 100644 --- a/commands/implemented/command_tts.py +++ b/commands/implemented/command_tts.py @@ -18,5 +18,5 @@ class CommandTTS(AbstractCommand, metaclass=ABCMeta): bot.tts_enabled = True elif args[1] == "stop": if twitch_message.sender.lower() == twitch_message.channel: - bot.send_message("tts activated on #%s" % twitch_message.channel) + bot.send_message("tts deactivated on #%s" % twitch_message.channel) bot.tts_enabled = False