summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/test
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 18:47:22 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 18:47:22 +0100
commit4c83ab3595adf8af8588c2bca3b4f7e472b62af0 (patch)
tree858995493b1fecb169c4c84330fa3d44f112b6be /src/main/java/at/hannibal2/skyhanni/test
parent3d3f1f8cc911d02cfdc89074a8b49866f1db5085 (diff)
downloadskyhanni-4c83ab3595adf8af8588c2bca3b4f7e472b62af0.tar.gz
skyhanni-4c83ab3595adf8af8588c2bca3b4f7e472b62af0.tar.bz2
skyhanni-4c83ab3595adf8af8588c2bca3b4f7e472b62af0.zip
Add DebugDataCollectEvent and add Diana Burrow Nearest Warp to /shdebugdata
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt
index 1adf858c7..a648144fe 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt
@@ -8,6 +8,7 @@ import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.config.core.config.Position
import at.hannibal2.skyhanni.data.HypixelData
import at.hannibal2.skyhanni.data.SlayerAPI
+import at.hannibal2.skyhanni.events.DebugDataCollectEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.LorenzRenderWorldEvent
@@ -400,8 +401,10 @@ class SkyHanniDebugsAndTests {
builder.append(" isInCorrectArea: ${SlayerAPI.isInCorrectArea}\n")
builder.append(" isInAnyArea: ${SlayerAPI.isInAnyArea}\n")
}
-
}
+
+ DebugDataCollectEvent(builder).postAndCatch()
+
builder.append("```")
OSUtils.copyToClipboard(builder.toString())
LorenzUtils.chat("§eCopied SkyHanni debug data to clipboard.")