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.
This commit is contained in:
Rim 2023-12-06 18:11:33 -05:00
parent 9a07089892
commit 89881e31f0
2 changed files with 10 additions and 5 deletions

View File

@ -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;
}

View File

@ -10,12 +10,16 @@
#include <utils/io.hpp>
#include <utils/compression.hpp>
#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
{