From 11edb75336cda630e70f73ace9280b390f0bb7f2 Mon Sep 17 00:00:00 2001 From: Stan Lindsey Date: Tue, 5 Feb 2013 12:24:19 +0000 Subject: [PATCH] Math.floor instead of rounding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Should fix https://github.com/lefnire/habitrpg/issues/236#issuecomment-13126649 --- views/app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/app/index.html b/views/app/index.html index 929b0f863c..4e58a7742a 100644 --- a/views/app/index.html +++ b/views/app/index.html @@ -163,7 +163,7 @@ {#if _user.history.exp}   {/} - {round(_user.stats.exp)} / {_user._tnl} + {Math.floor(_user.stats.exp)} / {_user._tnl}