aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-12 17:57:26 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-12 17:57:26 +0200
commit584f7cd9597aeda0eb44c7d65387d255c592f94c (patch)
treebf088bdf709ccde7e142fa33d738bc048a3a323b /src
parentc2a3de433b5a169c7a4dcb138247457d09ad1d45 (diff)
downloadskyhanni-584f7cd9597aeda0eb44c7d65387d255c592f94c.tar.gz
skyhanni-584f7cd9597aeda0eb44c7d65387d255c592f94c.tar.bz2
skyhanni-584f7cd9597aeda0eb44c7d65387d255c592f94c.zip
added alpha server info to debug command and added todo
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt1
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt
index 37e61257f..d4a14679a 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt
@@ -38,6 +38,7 @@ import kotlin.time.Duration.Companion.seconds
class HypixelData {
private val patternGroup = RepoPattern.group("data.hypixeldata")
+ // TODO add regex tests
private val serverNameConnectionPattern by patternGroup.pattern(
"servername.connection",
"(?<prefix>.+\\.)?hypixel\\.net",
diff --git a/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt
index 59a2529a0..53543c261 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/DebugCommand.kt
@@ -118,6 +118,7 @@ object DebugCommand {
add("on Hypixel SkyBlock")
add("skyBlockIsland: ${LorenzUtils.skyBlockIsland}")
add("skyBlockArea: '${LorenzUtils.skyBlockArea}'")
+ add("isOnAlphaServer: '${LorenzUtils.isOnAlphaServer}'")
}
}