mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 11:36:43 +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()) {
|
||||
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));
|
||||
}, applyExecutor);
|
||||
|
|
Loading…
Reference in a new issue