mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 19:46:42 +01:00
Fixed diets not loading
This commit is contained in:
parent
c78abf58be
commit
59fbd177a2
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ public class DietsLoader implements IdentifiableResourceReloadListener {
|
||||||
if (!issueList.isEmpty()) {
|
if (!issueList.isEmpty()) {
|
||||||
LOGGER.error("Could not load diet profile {}. Caused by {}", entry.getKey(), issueList.toString());
|
LOGGER.error("Could not load diet profile {}. Caused by {}", entry.getKey(), issueList.toString());
|
||||||
}
|
}
|
||||||
return issueList.isEmpty();
|
return !issueList.isEmpty();
|
||||||
});
|
});
|
||||||
PonyDiets.load(new PonyDiets(profiles, foodGroups));
|
PonyDiets.load(new PonyDiets(profiles, foodGroups));
|
||||||
}, applyExecutor);
|
}, applyExecutor);
|
||||||
|
|
Loading…
Reference in a new issue