aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/util/Locraw.kt
blob: afbacef5f399c483cbca27732a3e6844142de0a8 (plain)
1
2
3
4
5
6
7
8
package moe.nea.firmament.util

import kotlinx.serialization.Serializable

@Serializable
data class Locraw(val server: String, val gametype: String? = null, val mode: String? = null, val map: String? = null) {
    val skyblockLocation = if (gametype == "SKYBLOCK") mode else null
}