Default to non-development environment, if no key

Never going to happen!
This commit is contained in:
Daniel E 2019-12-18 13:56:16 -07:00
parent ae54ac322c
commit 6aa1a23c98
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public final class SeppukuLoadingPlugin implements IFMLLoadingPlugin {
@Override
public void injectData(Map<String, Object> data) {
final boolean runtimeDeobfuscationEnabled =
(boolean) data.getOrDefault("runtimeDeobfuscationEnabled", false);
(boolean) data.getOrDefault("runtimeDeobfuscationEnabled", true);
SeppukuClassTransformer.PATCH_MANAGER = new PatchManager(!runtimeDeobfuscationEnabled);
}