diff --git a/config.py b/config.py index 1d1bb5a..4316725 100644 --- a/config.py +++ b/config.py @@ -78,6 +78,6 @@ botList = ("Nightbot", "StreamElements", "Moobot", "Praxis Bot", "praxis_bot", " slurList = ("fag", "faggot", "niga", "nigga", "nigger", "retard", "tard", "rtard", "coon") -currentSpeaker = Speaker.STREAMLABS_API +currentSpeaker = Speaker.GOOGLE_TEXT_TO_SPEECH fileNameStrategy = FileNameStrategy.CONTENT_BASED streamlabsVoice = PollyVoices.Justin diff --git a/main.py b/main.py index 4939d57..992d52e 100644 --- a/main.py +++ b/main.py @@ -17,10 +17,7 @@ twitch_chat: twitch_script.Twitch_Module credentials_manager: credentials.Credentials_Module discord_connection: discord_script.Discord_Module -def main(): - pass - -def new_main(inputArg): +def main(inputArg): args = utility.get_args(inputArg) diff --git a/twitch_script.py b/twitch_script.py index ef530ae..73e1cdf 100644 --- a/twitch_script.py +++ b/twitch_script.py @@ -74,6 +74,7 @@ class Twitch_Module(): if not self.isSenderBot(message): if self.cooldownModule.isCooldownActive("twitchChat") == False: + print("Pre Eval") self.eval_commands(message) self.tts_message(message) @@ -98,7 +99,7 @@ class Twitch_Module(): command = self.commands[command_text] if command is not None and command.command_type is AbstractCommand.CommandType.TWITCH: - print("evaling command") + print("running command") command.do_command(self, message) except Exception as e: # Undo the following for debug stuff