We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89dab59 commit 5d984f6Copy full SHA for 5d984f6
forge/src/main/java/org/embeddedt/modernfix/platform/forge/ModernFixPlatformHooksImpl.java
@@ -187,6 +187,8 @@ public void injectPlatformSpecificHacks() {
187
noGroupField.setAccessible(true);
188
InjectorGroupInfo noGroup = (InjectorGroupInfo)noGroupField.get(null);
189
groupMembersField.set(noGroup, new DummyList<>());
190
+ } catch(NoSuchFieldException ignored) {
191
+ // Connector will replace FML's mixin with one which already has the fix, don't bother logging
192
} catch(RuntimeException | ReflectiveOperationException e) {
193
ModernFixMixinPlugin.instance.logger.error("Failed to patch mixin memory leak", e);
194
}
0 commit comments