diff --git a/bot.py b/bot.py index d855999..989422b 100644 --- a/bot.py +++ b/bot.py @@ -203,7 +203,7 @@ def check_for_update(): if not latest_version or not download_url: print(f"{RED}{get_translation(LOCALE, 'invalid_server')}{RESET}") return None, None - + local_version = get_local_version() if local_version == "0.0.0": with open(LOCAL_VERSION_FILE, "w") as f: diff --git a/config.py b/config.py index 53cb6a9..d4e6b0b 100644 --- a/config.py +++ b/config.py @@ -4,7 +4,7 @@ import platform import random load_dotenv() -VERSION_URL = "https://goober.whatdidyouexpect.eu" +VERSION_URL = "https://goober.expect.ovh" UPDATE_URL = VERSION_URL+"/latest_version.json" LOCAL_VERSION_FILE = "current_version.txt" TOKEN = os.getenv("DISCORD_BOT_TOKEN")