Skip to content

Commit

Permalink
Dont sort custom packtype listeners
Browse files Browse the repository at this point in the history
Fixes #180
  • Loading branch information
Su5eD committed Dec 17, 2024
1 parent 1af6e62 commit 4ea8954
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public PackResources openFull(PackLocationInfo var1, Pack.Metadata metadata) {
}

public static List<PreparableReloadListener> sort(PackType type, List<PreparableReloadListener> listeners) {
if (type == null) {
if (type != PackType.SERVER_DATA && type != PackType.CLIENT_RESOURCES) {
return listeners;
}

Expand Down
2 changes: 1 addition & 1 deletion ffapi.gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
loom.platform=neoforge
fabric.loom.dontRemap=true

implementationVersion=2.0.21
implementationVersion=2.0.22

versionMc=1.21.1
versionForge=21.1.57
Expand Down

0 comments on commit 4ea8954

Please sign in to comment.