Skip to content
This repository was archived by the owner on Aug 18, 2024. It is now read-only.

Commit cd1db9d

Browse files
committed
0.2.3 fix
1 parent 36e4bb9 commit cd1db9d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group 'com.redlimerl'
7-
version '0.2.2'
7+
version '0.2.3'
88
repositories {
99
mavenCentral()
1010
}

src/main/java/com/pistacium/modcheck/ModCheckConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
public class ModCheckConstants {
44

5-
public static final String APPLICATION_VERSION = "0.2.2";
5+
public static final String APPLICATION_VERSION = "0.2.3";
66

77
}

src/main/java/com/pistacium/modcheck/mod/resource/ModResources.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public ModResources(String data, List<VersionPick> versionPicks, String defaultB
3131
}
3232
}
3333

34-
for (R childAsset : getChildAssets(resourceAssets)) {
35-
if (isPreRelease(childAsset) && !isNeedCheckPreRelease) return;
34+
for (R childAsset : assetIterable) {
35+
if (isPreRelease(childAsset) && !isNeedCheckPreRelease) continue;
3636

3737
List<ModResource> modResources = convertToModResources(childAsset);
3838
HashMap<ModVersion, ModResource> updateMap = new HashMap<>();

0 commit comments

Comments
 (0)