We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f413931 commit 02d07aaCopy full SHA for 02d07aa
core/src/mindustry/mod/Mods.java
@@ -32,7 +32,7 @@
32
33
public class Mods implements Loadable{
34
private static final String[] metaFiles = {"mod.json", "mod.hjson", "plugin.json", "plugin.hjson"};
35
- //it would be nice to parse symver and have syntax like "<1.0.5" here, but mods clearly don't use symver and it's an inconsistent mess
+ //it would be nice to parse semver and have syntax like "<1.0.5" here, but mods clearly don't use semver and it's an inconsistent mess
36
private static final ObjectSet<String> blacklistedMods = ObjectSet.with("ui-lib", "braindustry", "schema", "scheme-size:1.0.5", "scheme-size:1.0.4", "scheme-size:1.0.3", "scheme-size:1.0.1", "scheme-size:1.0.0", "scheme-size:1.0.4.1");
37
38
private Json json = new Json();
0 commit comments