diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-09-06 00:31:12 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-09-06 00:31:12 +0200 |
| commit | 1b782da51a4dc7c2d52a317e31c8bcb9ddfbbdbe (patch) | |
| tree | f27c5aa0038da701db9d7ad92af0324ee4215f89 /src/main/kotlin/util | |
| parent | 45bda2c907b224e12c793be08ad0498487a52e6b (diff) | |
| download | Firmament-1b782da51a4dc7c2d52a317e31c8bcb9ddfbbdbe.tar.gz Firmament-1b782da51a4dc7c2d52a317e31c8bcb9ddfbbdbe.tar.bz2 Firmament-1b782da51a4dc7c2d52a317e31c8bcb9ddfbbdbe.zip | |
fix: improve blocklist for etherwarp
[no changelog]
Diffstat (limited to 'src/main/kotlin/util')
| -rw-r--r-- | src/main/kotlin/util/SkyBlockIsland.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/kotlin/util/SkyBlockIsland.kt b/src/main/kotlin/util/SkyBlockIsland.kt index e7f955a..0fa6376 100644 --- a/src/main/kotlin/util/SkyBlockIsland.kt +++ b/src/main/kotlin/util/SkyBlockIsland.kt @@ -41,10 +41,13 @@ private constructor( val GARDEN = forMode("garden") val DUNGEON = forMode("dungeon") val NIL = forMode("_") + val GALATEA = forMode("foraging_2") } val hasCustomMining get() = RepoManager.miningData.customMiningAreas[this]?.isSpecialMining ?: false + val isModernServer + get() = this == GALATEA val userFriendlyName get() = RepoManager.neuRepo.constants.islands.areaNames |
