Marked lines for later deletion

This commit is contained in:
Alex Orid 2021-04-29 16:45:46 -04:00
parent d5f8d8e38d
commit 8bd428637e

View File

@ -3,8 +3,9 @@ import badwords as badwords
credentialsNickname = "praxis_bot" credentialsNickname = "praxis_bot"
twitch_module: bool = False #OLD CONFIGS WILL DELETE
discord_module: bool = False #twitch_module: bool = False
#discord_module: bool = False
test_module: bool = False test_module: bool = False
user_module: bool = True user_module: bool = True
@ -16,17 +17,20 @@ allowedCommandsList_TwitchPowerUsers = ["thecuriousnerd", "lakotor", "blastofcyn
block_TwitchChannelsMessaging = [""] # Blocks the ability to send messages to twitch channels block_TwitchChannelsMessaging = [""] # Blocks the ability to send messages to twitch channels
blockAll_TwitchChatChannelsMessaging = False # Blocks the ability to send messages to twitch channels blockAll_TwitchChatChannelsMessaging = False # Blocks the ability to send messages to twitch channels
autoEnabled_TwitchChannelsTTS = False #OLD CONFIGS WILL DELETE
block_TwitchChannelsTTS = [""] # block supersedes the tts_enabled bool #autoEnabled_TwitchChannelsTTS = False
blockAll_TwitchChatChannelsTTS = False # blockAll supersedes the force bool and force list and tts_enabled bool #block_TwitchChannelsTTS = [""] # block supersedes the tts_enabled bool
force_TwitchChannelsTTS = [""] # force supersedes the block list #blockAll_TwitchChatChannelsTTS = False # blockAll supersedes the force bool and force list and tts_enabled bool
forceAll_TwitchChatChannelsTTS = False # forceAll supersedes the blockAll bool and block list and force list #force_TwitchChannelsTTS = [""] # force supersedes the block list
#forceAll_TwitchChatChannelsTTS = False # forceAll supersedes the blockAll bool and block list and force list
blockAll_TTS_URL_Twitch = True #OLD CONFIGS WILL DELETE
#blockAll_TTS_URL_Twitch = True
autoEnabled_Twitch_rgbLightControl = False autoEnabled_Twitch_rgbLightControl = False
twitch_defaultCommandEnabledState = True #OLD CONFIGS WILL DELETE
#twitch_defaultCommandEnabledState = True
#twitch_defaultCommandEnabledState_liveStreamOnly = True # If true this will make commands only available during live streams. #twitch_defaultCommandEnabledState_liveStreamOnly = True # If true this will make commands only available during live streams.
#Discord Module Configs #Discord Module Configs
@ -34,6 +38,7 @@ block_DiscordChannelsMessaging = [""] # Blocks the ability to send messages to D
blockAll_DiscordChannelsMessaging = False # Blocks the ability to send messages to Discord channels blockAll_DiscordChannelsMessaging = False # Blocks the ability to send messages to Discord channels
blockAll_DiscordPrivateMessaging = False # Private Messaging not yet implemented blockAll_DiscordPrivateMessaging = False # Private Messaging not yet implemented
autoEnabled_DiscordChannelsTTS = False autoEnabled_DiscordChannelsTTS = False
selected_DiscordTTSChannels = ["431129571308339210"] selected_DiscordTTSChannels = ["431129571308339210"]
block_DiscordChannelsTTS = [""] # block supersedes the tts_enabled bool block_DiscordChannelsTTS = [""] # block supersedes the tts_enabled bool
@ -71,16 +76,15 @@ class FileNameStrategy(Enum):
fileNameStrategy = FileNameStrategy.CONTENT_BASED fileNameStrategy = FileNameStrategy.CONTENT_BASED
#OLD CLASS WILL DELETE
class DBStrategy(Enum): class DBStrategy(Enum):
SQLite = 1 SQLite = 1
MySQL = 2 MySQL = 2
#OLD CONFIGS WILL DELETE
dbStrategy = DBStrategy.SQLite #dbStrategy = DBStrategy.SQLite
#TTS Configs #TTS Configs
is_tts_Speaker_Enabled = False is_tts_Speaker_Enabled = False
is_tts_URL_Blocked = True is_tts_URL_Blocked = True