Commits
Thinkofname authored and md_5 committed 3273a6e65aa
255 255 | unzip( finalMappedJar, clazzDir, new Predicate<String>() |
256 256 | { |
257 257 | |
258 258 | |
259 259 | public boolean apply(String input) |
260 260 | { |
261 261 | return input.startsWith( "net/minecraft/server" ); |
262 262 | } |
263 263 | } ); |
264 264 | |
265 - | runProcess( CWD, "java", "-jar", "BuildData/bin/fernflower.jar", "-dgs=1", "-hdc=0", "-rbr=0", "-asc=1", clazzDir.getPath(), decompileDir.getPath() ); |
265 + | runProcess( CWD, "java", "-jar", "BuildData/bin/fernflower.jar", "-dgs=1", "-hdc=0", "-rbr=0", "-asc=1", "-udv=0", clazzDir.getPath(), decompileDir.getPath() ); |
266 266 | } |
267 267 | |
268 268 | System.out.println( "Applying CraftBukkit Patches" ); |
269 269 | File nmsDir = new File( craftBukkit, "src/main/java/net" ); |
270 270 | if ( nmsDir.exists() ) |
271 271 | { |
272 272 | System.out.println( "Backing up NMS dir" ); |
273 273 | FileUtils.moveDirectory( nmsDir, new File( workDir, "nms.old." + System.currentTimeMillis() ) ); |
274 274 | } |
275 275 | File patchDir = new File( craftBukkit, "nms-patches" ); |