Exit if user doesn't have Nexus premium during pack creation

This commit is contained in:
TheSandwichMakr 2019-10-14 21:25:47 +00:00
parent e4c1e264cd
commit c94c114af5
No known key found for this signature in database
GPG Key ID: DEB466B02721384A

View File

@ -264,7 +264,7 @@ namespace Wabbajack
if (IndexedArchives.Any(a => a.IniData?.General?.gameName != null))
{
var nexusClient = new NexusApiClient();
if (!nexusClient.IsPremium) Info($"User {nexusClient.Username} is not a premium Nexus user, cannot continue");
if (!nexusClient.IsPremium) Error($"User {nexusClient.Username} is not a premium Nexus user, so we cannot access the necessary API calls, cannot continue");
}