From 04c902a79263842e6fb2ed30a12d5b49f2dd8409 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Sun, 21 Jun 2020 17:31:35 +0200 Subject: [PATCH] [1.8.9] Fix launching in development environment --- src/main/java/com/replaymod/core/LoadingPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/replaymod/core/LoadingPlugin.java b/src/main/java/com/replaymod/core/LoadingPlugin.java index b8f2c690..5598ca01 100644 --- a/src/main/java/com/replaymod/core/LoadingPlugin.java +++ b/src/main/java/com/replaymod/core/LoadingPlugin.java @@ -26,7 +26,7 @@ package com.replaymod.core; //$$ public class LoadingPlugin implements IFMLLoadingPlugin { //$$ //$$ public LoadingPlugin() { -//$$ if ((Boolean) Launch.blackboard.get("fml.deobfuscatedEnvironment")) { +//$$ if (Launch.blackboard.get("fml.deobfuscatedEnvironment") != Boolean.FALSE) { //$$ // Outside of the dev env, this is the job of the tweaker //$$ MixinBootstrap.init(); //$$ }