Skip to content

Commit

Permalink
Update Maps.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot authored Jan 13, 2024
1 parent b843973 commit a338bd0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/kotlin/de/bigboot/ggtools/fang/utils/Maps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ object Maps {
val LV_CANYON = Map("lv_canyon", "[Clash] Ghost Reef")
val LV_MISTFORGE = Map("lv_mistforge", "[Clash] Sanctum Falls")
val LV_VALLEY = Map("lv_valley", "[Clash] Sirens Strand")
val LV_WIZARDWOODS = Map("lv_wizardwoods", "[Clash] Ember Grove")
val LV_SKYCITYV2 = Map("lv_skycityv2", "[Clash] Sky City V2")
val LV_MODCITY = Map("lv_modcity", "[Clash] Sky Tuga")
val LV_WIZARDWOODS = Map("lv_wizardwoods", "[Clash] Ember Grove", false)
val LV_SKYCITYV2 = Map("lv_skycityv2", "[Clash] Sky City V2", false)
val LV_MODCITY = Map("lv_modcity", "[Clash] Sky Tuga", false)

val RS_CANYON2 = Map("rs_canyon2", "[Rush] Ghost Reef")
val RS_MISTFORGE2 = Map("rs_mistforge2", "[Rush] Sanctum Falls")
val RS_VALLEY3 = Map("rs_valley3", "[Rush] Sirens Strand")
val RS_WIZARDWOODS2 = Map("rs_wizardwoods2", "[Rush] Ember Grove")
val RS_SKYCITY1 = Map("rs_skycity1", "[Rush] Sky City")
val RS_MODCITY1 = Map("rs_modcity1", "[Rush] Mod City")
val RS_CANYON2 = Map("rs_canyon2", "[Rush] Ghost Reef", false)
val RS_MISTFORGE2 = Map("rs_mistforge2", "[Rush] Sanctum Falls", false)
val RS_VALLEY3 = Map("rs_valley3", "[Rush] Sirens Strand", false)
val RS_WIZARDWOODS2 = Map("rs_wizardwoods2", "[Rush] Ember Grove", false)
val RS_SKYCITY1 = Map("rs_skycity1", "[Rush] Sky City", false)
val RS_MODCITY1 = Map("rs_modcity1", "[Rush] Mod City", false)

val ALL = listOf(
LV_CANYON,
Expand All @@ -34,4 +34,4 @@ object Maps {
val FINISHED = ALL.filter { !it.prototype }

fun fromId(id: String) = ALL.find { it.id == id }
}
}

0 comments on commit a338bd0

Please sign in to comment.