You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewRuntimeException("Groovy mod containers must be registered at construction event! Tried to register '" + container.getContainerName() + "' too late.");
197
199
}
198
200
if (!Loader.isModLoaded(container.getModId())) return;
201
+
if (ArrayUtils.contains(GroovyScriptConfig.compat.blacklistedContainers, container.getModId())) {
202
+
GroovyScript.LOGGER.warn("Not registering compat for '{}' as it was in the config blacklist", container.getContainerName());
203
+
return;
204
+
}
199
205
if (hasCompatFor(container.getModId())) {
200
206
GroovyContainer<?> current = getContainer(container.getModId());
201
207
if (current.getOverridePriority().ordinal() >= container.getOverridePriority().ordinal()) {
0 commit comments