Skip to content

Commit

Permalink
More info about coremod blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Dec 1, 2024
1 parent 15529fd commit 283d396
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/main/java/net/minecraftforge/common/ForgeEarlyConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ public class ForgeEarlyConfig {
public static String CONFIG_ANY_TIME_VERSION = "3.0";
public static String MIXIN_BOOTER_VERSION = "10.2";

@Config.Name("""
Mods in this list have one or more of the problems list below:
- Integrated into Cleanroom so shouldn't load it from mods
- Too invasive or hacky that it is unpatchable
- Have a better replacement that compats e.g. JEID vs REID
""")
public static String[] LOADING_PLUGIN_BLACKLIST = new String[] {
"com.cleanroommc.configanytime.ConfigAnytimePlugin",
"zone.rong.mixinbooter.MixinBooterPlugin",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +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);
FMLLog.log.warn("The mod with loading plugin {} is in blacklist and won't be loaded. Check forge_early.cfg for more info.", fmlCorePlugin);
continue;
}
if (fmlCorePlugin == null)
Expand Down

0 comments on commit 283d396

Please sign in to comment.