From 79ab43c66f9b40d9f6780f14b8d423a489e77c5c Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 10 Sep 2025 20:26:11 +0100 Subject: Add a way to transform the decompiler input --- enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enigma-cli') diff --git a/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java b/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java index 020bd979..baed29a6 100644 --- a/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java +++ b/enigma-cli/src/main/java/cuchaz/enigma/command/DecompileCommand.java @@ -47,7 +47,7 @@ public class DecompileCommand extends Command { ProgressListener progress = new ConsoleProgressListener(); EnigmaProject.JarExport jar = project.exportRemappedJar(progress); - EnigmaProject.SourceExport source = jar.decompile(progress, decompilerService, DecompileErrorStrategy.TRACE_AS_SOURCE); + EnigmaProject.SourceExport source = jar.decompile(project, progress, decompilerService, DecompileErrorStrategy.TRACE_AS_SOURCE); source.write(fileJarOut, progress); } -- cgit v1.2.3