Fixes an issue when error message about file loading was not logged.

This commit is contained in:
BONNe 2022-07-26 01:02:09 +03:00
parent d59b047555
commit c933caebe0
2 changed files with 5 additions and 9 deletions

View File

@ -101,10 +101,8 @@ public class ChallengesImportManager
Utils.sendMessage(user, user.getTranslation(Constants.ERRORS + "no-load",
Constants.PARAMETER_FILE, file, TextVariables.DESCRIPTION, e.getMessage()));
}
else
{
this.addon.logError("Exception when loading file. " + e.getMessage());
}
this.addon.logError("Exception when loading file. " + e.getMessage());
return;
}
@ -119,10 +117,8 @@ public class ChallengesImportManager
user.getTranslation(Constants.ERRORS + "not-a-gamemode-world",
Constants.PARAMETER_WORLD, world.getName()));
}
else
{
this.addon.logWarning("Given world is not a gamemode world.");
}
this.addon.logWarning("Given world is not a gamemode world.");
return;
}

View File

@ -1189,7 +1189,7 @@ challenges:
not-enough-money: '&c It is necessary to have [value] on your account to complete the challenge.'
not-enough-experience: '&c It is necessary to have [value] EXP to complete this challenge.'
island-level: '&c Your island must be level [number] or greater to complete this challenge!'
no-load: '&c Error: Could not load file. [message]'
no-load: '&c Error: Could not load [file]. Error [message]'
load-error: '&c Error: Cannot load [value].'
no-rank: "&c You do not have rank that is high enough to do that."
cannot-remove-items: '&c Some items cannot be removed from your inventory!'