might as well blacklist it in the game too

This commit is contained in:
Anuken 2023-03-27 10:19:35 -04:00
parent 4db085bd07
commit e36a70749c

View File

@ -32,7 +32,7 @@ import static mindustry.Vars.*;
public class Mods implements Loadable{ public class Mods implements Loadable{
private static final String[] metaFiles = {"mod.json", "mod.hjson", "plugin.json", "plugin.hjson"}; private static final String[] metaFiles = {"mod.json", "mod.hjson", "plugin.json", "plugin.hjson"};
private static final ObjectSet<String> blacklistedMods = ObjectSet.with("ui-lib"); private static final ObjectSet<String> blacklistedMods = ObjectSet.with("ui-lib", "braindustry");
private Json json = new Json(); private Json json = new Json();
private @Nullable Scripts scripts; private @Nullable Scripts scripts;