Fix rolls showing hits when action score ties challenge dice
FortTell opened this issue · 1 comments
FortTell commented
As shown on pp. 8 and 18 of the Ironsworn rulebook, an action score must be greater than one of the challenge dice to score a hit.
However, in the current version, this is not true.
Those results should have both been misses.
The error is in the calculation of hits in the RollAction considering a roll a Miss only if the result is LOWER than both of the challenge dice.
FortTell commented
See js/state.js:770, "<" comparisons should be "<=" instead