mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
Don't repeat we are loading translations twice
This commit is contained in:
parent
c1ede49a8e
commit
3fc8bf30bb
@ -83,10 +83,6 @@ public enum TranslateType {
|
||||
private void loadTranslations() {
|
||||
translated.clear();
|
||||
|
||||
if (LibsPremium.isPremium() && DisguiseConfig.isUseTranslations()) {
|
||||
DisguiseUtilities.getLogger().info("Loading translations: " + name());
|
||||
}
|
||||
|
||||
if (!getFile().exists()) {
|
||||
DisguiseUtilities.getLogger().info("Translations for " + name() + " missing! Saving..");
|
||||
return;
|
||||
@ -124,7 +120,7 @@ public enum TranslateType {
|
||||
DisguiseUtilities.getLogger().info("Loaded " + translated.size() + " translations for " + name() + " with " + diff + " changed");
|
||||
} else if (diff > 0 && !DisguiseConfig.isUseTranslations()) {
|
||||
DisguiseUtilities.getLogger()
|
||||
.info("Translations are disabled in libsdisguises.yml, but you modified " + diff + " messages in the translations. Is this intended?");
|
||||
.info("Translations are disabled in libsdisguises.yml, but you modified " + diff + " messages in the translations for " + name() +". Is this intended?");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user