You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: common/src/commonMain/kotlin/cz/frantisekmasa/wfrp_master/common/character/effects/CharacteristicChange.kt
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -94,31 +94,31 @@ open class CharacteristicChange(
94
94
)
95
95
}
96
96
97
-
if (name.equals(translator.translate(Str.character_effect_leader), ignoreCase =true)) {
97
+
if (name.equals(translator.translate(Str.character_effect_fast), ignoreCase =true)) {
98
98
returnCharacteristicChange(
99
99
plus =
100
100
Stats.ZERO.copy(
101
-
fellowship =10,
102
-
willPower =10,
101
+
agility =10,
103
102
),
104
103
)
105
104
}
106
105
107
-
if (name.equals(translator.translate(Str.character_effect_tough), ignoreCase =true)) {
106
+
if (name.equals(translator.translate(Str.character_effect_leader), ignoreCase =true)) {
108
107
returnCharacteristicChange(
109
108
plus =
110
109
Stats.ZERO.copy(
111
-
toughness=10,
110
+
fellowship=10,
112
111
willPower =10,
113
112
),
114
113
)
115
114
}
116
115
117
-
if (name.equals(translator.translate(Str.character_effect_brute), ignoreCase =true)) {
116
+
if (name.equals(translator.translate(Str.character_effect_tough), ignoreCase =true)) {
0 commit comments