Skip to content

Commit

Permalink
Fixed maths for strength calculations rounding, rather than rounding …
Browse files Browse the repository at this point in the history
…down
  • Loading branch information
ThaumRystra committed May 18, 2015
1 parent e4083bc commit f455cea
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</tr>
<tr>
<td>Standing long jump</td>
<td>{{evaluate charId "round(strength/2)"}} feet</td>
<td>{{evaluate charId "floor(strength/2)"}} feet</td>
</tr>
<tr>
<td>Running high jump</td>
Expand All @@ -51,10 +51,10 @@
</tr>
<tr>
<td>Standing high jump</td>
<td>{{evaluate charId "round((3 + strengthMod)/2)"}} feet</td>
<td>{{evaluate charId "floor((3 + strengthMod)/2)"}} feet</td>
<td class="caption">
Can reach a ledge as high as
{{evaluate charId "round((3 + strengthMod)/2)"}} feet
{{evaluate charId "floor((3 + strengthMod)/2)"}} feet
+ 1.5&times; your height
</td>
</tr>
Expand Down

0 comments on commit f455cea

Please sign in to comment.