Skip to content

Commit

Permalink
Add more entried to coremod blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Dec 1, 2024
1 parent 2dea6c8 commit 788a91a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ public class ForgeEarlyConfig {
public static String CONFIG_ANY_TIME_VERSION = "3.0";
public static String MIXIN_BOOTER_VERSION = "10.1";

public static String[] LOADING_PLUGIN_BLACKLIST = new String[] {"com.cleanroommc.configanytime.ConfigAnytimePlugin", "zone.rong.mixinbooter.MixinBooterPlugin"};
public static String[] LOADING_PLUGIN_BLACKLIST = new String[] {
"com.cleanroommc.configanytime.ConfigAnytimePlugin",
"zone.rong.mixinbooter.MixinBooterPlugin",
"ilib.asm.Loader",
"org.dimdev.jeid.JEIDLoadingPlugin",
"lain.mods.skins.init.forge.asm.Plugin",
"advancedshader.core.Core",
};

public static CategoryOpenAlContext OPENAL_CONTEXT = new CategoryOpenAlContext();
public static class CategoryOpenAlContext{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ private static void discoverCoreMods(File mcDir, LaunchClassLoader classLoader)
}
if (ignoreMods) {
ignoredModFiles.add(coreMod.getName());
FMLLog.log.warn("The mod with loading plugin {} is in blacklist and won't be loaded.", fmlCorePlugin);
continue;
}
if (fmlCorePlugin == null)
Expand Down

0 comments on commit 788a91a

Please sign in to comment.