aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ10a1n15 <45315647+j10a1n15@users.noreply.github.com>2024-05-18 02:30:19 +0200
committerGitHub <noreply@github.com>2024-05-18 02:30:19 +0200
commit071322a0a2bdf7b9b49d6546a003bdff9ba7ad4f (patch)
treeaab452f86ab463d767e7d6d6350f59b5c193c983
parentfcfd30fc47bc1f0f56d5c1fb5548b9b058cd0e95 (diff)
downloadskyhanni-071322a0a2bdf7b9b49d6546a003bdff9ba7ad4f.tar.gz
skyhanni-071322a0a2bdf7b9b49d6546a003bdff9ba7ad4f.tar.bz2
skyhanni-071322a0a2bdf7b9b49d6546a003bdff9ba7ad4f.zip
Fix: Max Island Size with Crimson + Catacombs (#1822)
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt2
1 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 fd042f499..55ab2dd35 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt
@@ -185,7 +185,9 @@ class HypixelData {
return when (skyBlockIsland) {
IslandType.MINESHAFT -> 4
+ IslandType.CATACOMBS -> 5
IslandType.CRYSTAL_HOLLOWS -> 24
+ IslandType.CRIMSON_ISLE -> 24
else -> if (serverId?.startsWith("mega") == true) 80 else 26
}
}