Math.floor instead of rounding

Should fix https://github.com/lefnire/habitrpg/issues/236#issuecomment-13126649
This commit is contained in:
Stan Lindsey
2013-02-05 12:24:19 +00:00
parent b7580a9e5a
commit 11edb75336
+1 -1
View File
@@ -163,7 +163,7 @@
{#if _user.history.exp}
<a x-bind=click:toggleChart data-toggle-id="exp-chart" data-history-path="_user.history.exp" rel=tooltip title="Progress"><i class=icon-signal></i></a>&nbsp;
{/}
<i class=icon-star></i> {round(_user.stats.exp)} / {_user._tnl}
<i class=icon-star></i> {Math.floor(_user.stats.exp)} / {_user._tnl}
</span>
</div>
</td>