Skip to content

Commit ed5c274

Browse files
authored
Merge pull request #7 from fmasa/fix-wounds
Fix: Use fixed max Wounds for characters without Hardy
2 parents cc1fed7 + 61722cf commit ed5c274

File tree

1 file changed

+2
-0
lines changed
  • common/src/commonMain/kotlin/cz/frantisekmasa/wfrp_master/common/core/domain/character

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ data class Character(
233233
if (hasHardyTalent) {
234234
return manualMaxWounds + tb
235235
}
236+
237+
return manualMaxWounds
236238
}
237239

238240
val baseWounds = Wounds.calculateMax(size ?: Size.AVERAGE, characteristics)

0 commit comments

Comments
 (0)