From 89881e31f01908fea60f1b095d1a2d41c31763f1 Mon Sep 17 00:00:00 2001 From: Rim Date: Wed, 6 Dec 2023 18:11:33 -0500 Subject: [PATCH] Remove update server to prevent new versions of ext.dll Removes the file update server to prevent launcher files and ext.dll files from downloading in order to keep Steam verification removed. Ownership is required with the new ext.dll. --- src/client/component/updater.cpp | 3 ++- src/client/updater/file_updater.cpp | 12 ++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/client/component/updater.cpp b/src/client/component/updater.cpp index b9e63101..06fdbae1 100644 --- a/src/client/component/updater.cpp +++ b/src/client/component/updater.cpp @@ -10,7 +10,8 @@ namespace updater { void update() { - if (utils::flags::has_flag("noupdate")) + if (utils::flags::has_flag("noupdate")) // Ahrimdon + // if (utils::flags::has_flag("update")) { return; } diff --git a/src/client/updater/file_updater.cpp b/src/client/updater/file_updater.cpp index dbe441c9..551319cb 100644 --- a/src/client/updater/file_updater.cpp +++ b/src/client/updater/file_updater.cpp @@ -10,12 +10,16 @@ #include #include -#define UPDATE_SERVER "https://master.bo3.eu/" +#define UPDATE_SERVER "" +// #define UPDATE_SERVER "https://master.bo3.eu/" -#define UPDATE_FILE_MAIN UPDATE_SERVER "files.json" -#define UPDATE_FOLDER_MAIN UPDATE_SERVER "t7x/" +#define UPDATE_FILE_MAIN UPDATE_SERVER "" +#define UPDATE_FOLDER_MAIN UPDATE_SERVER "" +// #define UPDATE_FILE_MAIN UPDATE_SERVER "files.json" +// #define UPDATE_FOLDER_MAIN UPDATE_SERVER "t7x/" -#define UPDATE_HOST_BINARY "t7x.exe" +#define UPDATE_HOST_BINARY "" +// #define UPDATE_HOST_BINARY "t7x.exe" namespace updater {