File tree Expand file tree Collapse file tree
patcher/src/main/java/com/fox2code/hypertale/patcher/patches Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ if (localPropertiesFile.isFile()) {
4343boolean nonRelease = " release" != localProperties. getOrDefault(" build.patchline" , " release" )
4444
4545tasks. register(' publishToMavenLocal' , Task ). configure {
46+ shouldRunAfter(" :launcher:runDevModPatcher" )
4647 shouldRunAfter(" build" )
4748}
4849tasks. register(' spotlessApply' , Task )
@@ -155,6 +156,7 @@ subprojects {
155156}
156157
157158tasks. build. dependsOn(" :patcher:patchHytale" )
159+ tasks. build. dependsOn(" :launcher:runDevModPatcher" )
158160tasks. register(" fastBuild" ). configure {
159161 group = " build"
160162 description = " Build this project skipping testing and patching"
Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ public ClassNode transform(ClassNode classNode) {
8787 }
8888 if (methodInsnNode .owner .equals (classNode .name ) &&
8989 methodInsnNode .name .equals ("requestAuthGrant" )) {
90- System .out .println ("Found requestAuthGrant!" );
9190 if (putField == null && var == -1 ) {
9291 throw new RuntimeException ("Failed to get var!" );
9392 }
You can’t perform that action at this time.
0 commit comments