Skip to content

Commit 292e9f4

Browse files
committed
Fix characteristic translation
1 parent 8e622c8 commit 292e9f4

File tree

1 file changed

+3
-3
lines changed
  • common/src/commonMain/kotlin/cz/frantisekmasa/wfrp_master/common/core/domain

1 file changed

+3
-3
lines changed

common/src/commonMain/kotlin/cz/frantisekmasa/wfrp_master/common/core/domain/Characteristic.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ enum class Characteristic(override val nameResolver: (strings: Strings) -> Strin
1010
AGILITY({ it.characteristics.agility }),
1111
BALLISTIC_SKILL({ it.characteristics.ballisticSkill }),
1212
DEXTERITY({ it.characteristics.dexterity }),
13-
INITIATIVE({ it.characteristics.fellowship }),
14-
INTELLIGENCE({ it.characteristics.initiative }),
15-
FELLOWSHIP({ it.characteristics.intelligence }),
13+
INITIATIVE({ it.characteristics.initiative }),
14+
INTELLIGENCE({ it.characteristics.intelligence }),
15+
FELLOWSHIP({ it.characteristics.fellowship }),
1616
STRENGTH({ it.characteristics.strength }),
1717
TOUGHNESS({ it.characteristics.toughness }),
1818
WEAPON_SKILL({ it.characteristics.weaponSkill }),

0 commit comments

Comments
 (0)