We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f148f05 commit 04ecb96Copy full SHA for 04ecb96
1 file changed
src/main/java/org/spongepowered/asm/launch/platform/MixinPlatformAgentDefault.java
@@ -40,8 +40,8 @@ public class MixinPlatformAgentDefault extends MixinPlatformAgentAbstract {
40
41
@Override
42
public AcceptResult accept(MixinPlatformManager manager, IContainerHandle handle) {
43
- this.mixinConfigs = this.handle.getAttribute(ManifestAttributes.MIXINCONFIGS);
44
- this.connectorClass = this.handle.getAttribute(ManifestAttributes.MIXINCONNECTOR);
+ this.mixinConfigs = handle.getAttribute(ManifestAttributes.MIXINCONFIGS);
+ this.connectorClass = handle.getAttribute(ManifestAttributes.MIXINCONNECTOR);
45
return this.mixinConfigs == null && this.connectorClass == null ? AcceptResult.REJECTED : super.accept(manager, handle);
46
}
47
0 commit comments