Skip to content

Commit

Permalink
Fixed resource pack loading race condition
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphiMC committed Sep 12, 2024
1 parent 81a19f0 commit 73dbf57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public Map<String, Object> getConverterData() {
}

public boolean hasFinishedLoading() {
return this.texts != null;
return this.models != null;
}

public TextDefinitions getTexts() {
Expand Down

0 comments on commit 73dbf57

Please sign in to comment.