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