We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a122e commit e698e46Copy full SHA for e698e46
build.gradle
@@ -4,7 +4,7 @@ apply plugin: 'eclipse'
4
sourceCompatibility = '1.6'
5
targetCompatibility = '1.6'
6
7
-version = '0.5.0'
+version = '0.5.1'
8
9
repositories {
10
mavenCentral()
src/main/java/com/simon816/sponge/bootstrap/Bootstrap.java
@@ -92,7 +92,7 @@ public boolean accept(File pathname) {
92
@Override
93
public boolean accept(File pathname) {
94
String fn = pathname.getName().toLowerCase();
95
- return fn.endsWith(".jar") && fn.contains("sponge") && supportedVersion(fn);
+ return fn.endsWith(".jar") && fn.contains("spongeforge") && supportedVersion(fn);
96
}
97
});
98
0 commit comments