Skip to content

Commit ac34000

Browse files
committed
Minor extra fixes
1 parent fa9336b commit ac34000

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ if (localPropertiesFile.isFile()) {
4343
boolean nonRelease = "release" != localProperties.getOrDefault("build.patchline", "release")
4444

4545
tasks.register('publishToMavenLocal', Task).configure {
46+
shouldRunAfter(":launcher:runDevModPatcher")
4647
shouldRunAfter("build")
4748
}
4849
tasks.register('spotlessApply', Task)
@@ -155,6 +156,7 @@ subprojects {
155156
}
156157

157158
tasks.build.dependsOn(":patcher:patchHytale")
159+
tasks.build.dependsOn(":launcher:runDevModPatcher")
158160
tasks.register("fastBuild").configure {
159161
group = "build"
160162
description = "Build this project skipping testing and patching"

patcher/src/main/java/com/fox2code/hypertale/patcher/patches/PatchExtraAuthenticationData.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)