Fixed Typo
This commit is contained in:
parent
4ef983c7cc
commit
140d099e2d
10
config.py
10
config.py
@ -2,12 +2,16 @@ from enum import Enum
|
|||||||
|
|
||||||
credentialsNickname = "praxis_bot"
|
credentialsNickname = "praxis_bot"
|
||||||
|
|
||||||
twitch_module: bool = False
|
twitch_module: bool = True
|
||||||
discord_module: bool = False
|
discord_module: bool = False
|
||||||
|
|
||||||
test_module: bool = True
|
test_module: bool = False
|
||||||
|
|
||||||
autojoinTwitchChannels = ["thecuriousnerd"]
|
autojoin_TwitchChannels = ["thecuriousnerd"]
|
||||||
|
block_TwitchChannelsMessaging = [""]
|
||||||
|
block_TwitchChannelsTTS = [""]
|
||||||
|
blockAll_TwitchChatChannelMessaging = False
|
||||||
|
blockAll_TwitchChatChannelTTS = False
|
||||||
|
|
||||||
selected_discordTTSChannels = ["431129571308339210"]
|
selected_discordTTSChannels = ["431129571308339210"]
|
||||||
|
|
||||||
|
|||||||
2
main.py
2
main.py
@ -31,7 +31,7 @@ def twitch_module_init(dbCert, twitchCert):
|
|||||||
twitchModule_.db_manager.setup_engine(dbCert)
|
twitchModule_.db_manager.setup_engine(dbCert)
|
||||||
twitchModule_.twitchCredential = twitchCert
|
twitchModule_.twitchCredential = twitchCert
|
||||||
|
|
||||||
for twitchChannel in config.autojoinTwitchChannels:
|
for twitchChannel in config.autojoin_TwitchChannels:
|
||||||
twitchModule_.join_channel(None, twitchChannel)
|
twitchModule_.join_channel(None, twitchChannel)
|
||||||
|
|
||||||
def discord_module_init(dbCert, discordCert):
|
def discord_module_init(dbCert, discordCert):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user