Skip to content

Commit 1cf9d0c

Browse files
lamba92Lamba92
authored and
Lamba92
committed
fixed wrong order of dragons abilities
1 parent f325339 commit 1cf9d0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
group = "com.github.lamba92"
7-
version = "1.0.5"
7+
version = "1.0.6"
88

99
extensions.findByName("buildScan")?.withGroovyBuilder {
1010
setProperty("termsOfServiceUrl", "https://gradle.com/terms-of-service")

data/src/commonMain/kotlin/com/github/lamba92/dragalialost/data/mappers/DragonMapper.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ class DragonMapper(
9292

9393
data class Params(
9494
val dragon: DragonJSON,
95-
val ability1lvl2: Triple<AbilityJSON, ImageInfoJSON, AbilityGroupJSON>,
9695
val ability1lvl1: Triple<AbilityJSON, ImageInfoJSON, AbilityGroupJSON>,
96+
val ability1lvl2: Triple<AbilityJSON, ImageInfoJSON, AbilityGroupJSON>,
9797
val ability2lvl1: Triple<AbilityJSON, ImageInfoJSON, AbilityGroupJSON>?,
9898
val ability2lvl2: Triple<AbilityJSON, ImageInfoJSON, AbilityGroupJSON>?,
9999
val skill1: Pair<SkillJSON, Triple<ImageInfoJSON, ImageInfoJSON, ImageInfoJSON>>,

0 commit comments

Comments
 (0)