diff options
author | nea <nea@nea.moe> | 2023-09-27 01:07:17 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-09-27 01:07:17 +0200 |
commit | 6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6 (patch) | |
tree | dfd1698077c7384810c5aaedf1d645c27daf4d34 /src/main/kotlin/moe/nea/firmament/util | |
parent | eaf91279b8f65b30f05a7be9a8ae1b6b18859ae4 (diff) | |
download | Firmament-6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6.tar.gz Firmament-6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6.tar.bz2 Firmament-6754ab61dc56bf85dcae9a66a0040c0df6e3b2d6.zip |
Add quick /join command for catacombs and kuudra
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/util')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/util/SBData.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/util/SBData.kt b/src/main/kotlin/moe/nea/firmament/util/SBData.kt index 348f048..89c3a08 100644 --- a/src/main/kotlin/moe/nea/firmament/util/SBData.kt +++ b/src/main/kotlin/moe/nea/firmament/util/SBData.kt @@ -30,6 +30,7 @@ object SBData { var locraw: Locraw? = null val skyblockLocation: String? get() = locraw?.skyblockLocation val hasValidLocraw get() = locraw?.server !in listOf("limbo", null) + val isOnSkyblock get() = locraw?.gametype == "SKYBLOCK" fun init() { OutgoingPacketEvent.subscribe { event -> |