Fix Mana rounding on the stats page. Fixes #4820
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user