aboutsummaryrefslogtreecommitdiff
path: root/commands/time.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/time.js')
-rw-r--r--commands/time.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/time.js b/commands/time.js
index 115964e..08aaada 100644
--- a/commands/time.js
+++ b/commands/time.js
@@ -1,10 +1,10 @@
import constants from "../util/constants"
const PREFIX = constants.PREFIX
-
+let timerHr
export function time()
{
- let timerHr = Math.floor(constants.timerdata.timer/60/60)
+ timerHr = Math.floor(constants.timerdata.timer/60/60)
if(timerHr >= 1)
ChatLib.chat(`${PREFIX}&aTimer (${constants.serverData.server}): &b${timerHr}h ${Math.floor(constants.timerdata.timer/60) - timerHr*60}m`)