Fix Mana rounding on the stats page. Fixes #4820

This commit is contained in:
Benjamin Schenker 2015-03-08 16:31:53 -05:00
parent 1b53aeaee8
commit 25427fcf4c

View file

@ -7,7 +7,7 @@ table.table.table-striped
tr(ng-if='profile.stats.lvl >= 10 && !profile.preferences.disableClasses')
td
strong=env.t('mana')
| : {{profile.stats.mp | number:0}} / {{profile._statsComputed.maxMP}}
| : {{Math.floor(profile.stats.mp)}} / {{profile._statsComputed.maxMP}}
tr
td
strong=env.t('gold')