diff --git a/src/Updater.cs b/src/Updater.cs index 6c8e8540..58c56eb9 100644 --- a/src/Updater.cs +++ b/src/Updater.cs @@ -229,7 +229,7 @@ public async Task RunUpdates(string? id = null) continue; } - if (core.sponsor_only && !_jtBeta) { + if (core.requires_license && !_jtBeta) { continue; //skip if you don't have the key } diff --git a/src/models/Core.cs b/src/models/Core.cs index 5a340b1b..ae19423d 100644 --- a/src/models/Core.cs +++ b/src/models/Core.cs @@ -17,7 +17,7 @@ public class Core : Base public string? date_release { get; set; } public string? version { get; set; } - public bool sponsor_only { get; set; } = false; + public bool requires_license { get; set; } = false; private const string ZIP_FILE_NAME = "core.zip"; public bool downloadAssets { get; set; } = Factory.GetGlobals().SettingsManager.GetConfig().download_assets;