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 21:32:19 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 21:32:19 +0100
commit1bf29e31e35c4eb1a40fe0a7dfd111955ef48322 (patch)
tree7abc0d2666e250c63f6f1f044a8386950bf365ed /src/main/java/at/hannibal2/skyhanni/test
parent1a2abbef994d493d9e7d3c8dc421dc5b2f47e342 (diff)
downloadskyhanni-1bf29e31e35c4eb1a40fe0a7dfd111955ef48322.tar.gz
skyhanni-1bf29e31e35c4eb1a40fe0a7dfd111955ef48322.tar.bz2
skyhanni-1bf29e31e35c4eb1a40fe0a7dfd111955ef48322.zip
renamed ignore to irrelevant
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt
index 0cf0e4b5a..e2ff4dbb4 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt
@@ -57,13 +57,13 @@ object DebugCommand {
private fun profileType(event: DebugDataCollectEvent) {
event.title("Profile Type")
if (!LorenzUtils.inSkyBlock) {
- event.ignore("Not on SkyBlcok")
+ event.addIrrelevant("Not on SkyBlcok")
return
}
val classic = !LorenzUtils.noTradeMode
if (classic) {
- event.ignore("on classic")
+ event.addIrrelevant("on classic")
} else {
if (HypixelData.ironman) {
event.addData("on ironman")
@@ -80,12 +80,12 @@ object DebugCommand {
private fun profileName(event: DebugDataCollectEvent) {
event.title("Profile Name")
if (!LorenzUtils.inSkyBlock) {
- event.ignore("Not on SkyBlcok")
+ event.addIrrelevant("Not on SkyBlcok")
return
}
if (HypixelData.profileName != "") {
- event.ignore("profileName: '${HypixelData.profileName}'")
+ event.addIrrelevant("profileName: '${HypixelData.profileName}'")
} else {
event.addData("profile name is empty!")
}
@@ -105,7 +105,7 @@ object DebugCommand {
event.addData("Unknown SkyBlock island!")
return
}
- event.ignore {
+ event.addIrrelevant {
add("on Hypixel SkyBlock")
add("skyBlockIsland: ${LorenzUtils.skyBlockIsland}")
add("skyBlockArea: '${LorenzUtils.skyBlockArea}'")
@@ -115,7 +115,7 @@ object DebugCommand {
private fun globalRender(event: DebugDataCollectEvent) {
event.title("Global Render")
if (SkyHanniDebugsAndTests.globalRender) {
- event.ignore("normal enabled")
+ event.addIrrelevant("normal enabled")
} else {
event.addData {
add("Global renderer is disabled!")
@@ -127,7 +127,7 @@ object DebugCommand {
private fun repoAutoUpdate(event: DebugDataCollectEvent) {
event.title("Repo Auto Update")
if (SkyHanniMod.feature.dev.repoAutoUpdate) {
- event.ignore("normal enabled")
+ event.addIrrelevant("normal enabled")
} else {
event.addData("The repo does not auto update because auto update is disabled!")
}
@@ -135,7 +135,7 @@ object DebugCommand {
private fun player(event: DebugDataCollectEvent) {
event.title("Player")
- event.ignore {
+ event.addIrrelevant {
add("name: '${LorenzUtils.getPlayerName()}'")
add("uuid: '${LorenzUtils.getPlayerUuid()}'")
}