From 74c2cf79e290d51a6fa7ff7d668e12bed3a49ce5 Mon Sep 17 00:00:00 2001 From: phixxy Date: Sat, 20 Jan 2024 00:36:56 -0800 Subject: [PATCH] changed db to data --- sparkytron3000.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index 5f75bea..3408070 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -185,8 +185,8 @@ async def chat_response(ctx, channel_vars, chat_history_string): await handle_error(error) async def folder_setup(): - # Only tmp, extensions and db are supported, all other folders only exist for backwards compatibility and will be removed soon! - folder_names = ["tmp", "extensions", "db", "plugins", "tmp/sfw", "tmp/nsfw", "tmp/meme", "channels", "users", "channels/config", "channels/logs", "databases", "databases/currency", "databases/currency/players"] + # Only tmp, extensions and data are supported, all other folders only exist for backwards compatibility and will be removed soon! + folder_names = ["tmp", "extensions", "data", "plugins", "tmp/sfw", "tmp/nsfw", "tmp/meme", "channels", "users", "channels/config", "channels/logs", "databases", "databases/currency", "databases/currency/players"] for folder_name in folder_names: if not os.path.exists(folder_name): os.mkdir(folder_name)