Made passive scores show up for all skills with bonuses to passive score

closes #56
This commit is contained in:
Stefan Zermatten
2017-07-13 13:42:04 +02:00
parent 3227cd0934
commit 6a84c83644
5 changed files with 61 additions and 20 deletions

View File

@@ -61,6 +61,18 @@
<td>Total</td>
<td>{{characterCalculate "skillMod" charId skillName}}</td>
</tr>
{{#each passiveEffects}}
<tr>
<td>{{sourceName}}</td>
<td>Passive Bonus: {{statValue}}</td>
</tr>
{{/each}}
{{#if showPassiveTotal}}
<tr class="paper-font-body2">
<td>Passive Score</td>
<td>{{characterCalculate "passiveSkill" charId skillName}}</td>
</tr>
{{/if}}
</table>
</div>