diff --git a/Scripts/3_Game/core.c b/Scripts/3_Game/core.c index 132f77c..524b96a 100644 --- a/Scripts/3_Game/core.c +++ b/Scripts/3_Game/core.c @@ -73,12 +73,12 @@ class GameLabsCore { // TODO: Move this somewhere else in the future this.logger.Debug(string.Format("baseUrl=%1", this.configuration.GetBaseURL())); - if(this.configuration.GetBaseURL() != "https://api.cftools.cloud/gamelabs/dz") { + if(this.configuration.GetBaseURL() != "https://api.cftools.cloud/gamelabs/dz" && this.configuration.GetBaseURL() != "") { this.logger.Warn(string.Format("API Base URL has been modified, your data may get compromised! (%1)", this.configuration.GetBaseURL())); } this.logger.Debug(string.Format("storeUrl=%1", this.configuration.GetStoreURL())); - if(this.configuration.GetStoreURL() != "https://api.cftools.cloud/gamelabs/dz") { + if(this.configuration.GetStoreURL() != "https://api.cftools.cloud/gamelabs/dz" && this.configuration.GetStoreURL() != "") { this.logger.Warn(string.Format("API Store URL has been modified, your data may get compromised! (%1)", this.configuration.GetStoreURL())); } }