From 25427fcf4c4398984fcd2d2f18b049995442808f Mon Sep 17 00:00:00 2001 From: Benjamin Schenker Date: Sun, 8 Mar 2015 16:31:53 -0500 Subject: [PATCH] Fix Mana rounding on the stats page. Fixes #4820 --- website/views/shared/profiles/stats.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/views/shared/profiles/stats.jade b/website/views/shared/profiles/stats.jade index df1d72404f..7c9e3d18db 100644 --- a/website/views/shared/profiles/stats.jade +++ b/website/views/shared/profiles/stats.jade @@ -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')