From b9a28a503c1ad79172e031d2ff82d45720431ddb Mon Sep 17 00:00:00 2001 From: Alex Orid Date: Tue, 8 Dec 2020 21:28:06 -0500 Subject: [PATCH] Changed prefix --- commands/implemented/command_restartBot.py | 2 +- commands/implemented/command_shutdownBot.py | 2 +- commands/implemented/command_tts.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/implemented/command_restartBot.py b/commands/implemented/command_restartBot.py index b42dd24..fea1299 100644 --- a/commands/implemented/command_restartBot.py +++ b/commands/implemented/command_restartBot.py @@ -5,7 +5,7 @@ from commands.command_base import AbstractCommand import utilities_script as utilities class CommandTTS(AbstractCommand, metaclass=ABCMeta): - command = "//restart" + command = "!restart" def __init__(self): super().__init__(CommandTTS.command, n_args=0, command_type=AbstractCommand.CommandType.TWITCH) diff --git a/commands/implemented/command_shutdownBot.py b/commands/implemented/command_shutdownBot.py index 6c78155..1cdcb4c 100644 --- a/commands/implemented/command_shutdownBot.py +++ b/commands/implemented/command_shutdownBot.py @@ -5,7 +5,7 @@ from commands.command_base import AbstractCommand import utilities_script as utilities class CommandTTS(AbstractCommand, metaclass=ABCMeta): - command = "//shutdown" + command = "!shutdown" def __init__(self): super().__init__(CommandTTS.command, n_args=0, command_type=AbstractCommand.CommandType.TWITCH) diff --git a/commands/implemented/command_tts.py b/commands/implemented/command_tts.py index a678fc2..133d851 100644 --- a/commands/implemented/command_tts.py +++ b/commands/implemented/command_tts.py @@ -5,7 +5,7 @@ from commands.command_base import AbstractCommand class CommandTTS(AbstractCommand, metaclass=ABCMeta): - command = "//tts" + command = "!tts" def __init__(self): super().__init__(CommandTTS.command, n_args=1, command_type=AbstractCommand.CommandType.TWITCH)