From 8016fca7343de58e1b68508793f2a6ad3b97d221 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 4 Jun 2022 14:01:32 +0800 Subject: make day counter 2dp --- features/globalSettings/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features/globalSettings') diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 8ece6f8..00ec0ca 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -110,7 +110,7 @@ class GlobalSettings extends Feature { this.soopyWeight(user) }) this.registerCommand("lobbyday", () => { - ChatLib.chat(this.FeatureManager.messagePrefix + "Current lobby is day " + (World.getTime() / 20 / 60 / 20).toFixed(1)) + ChatLib.chat(this.FeatureManager.messagePrefix + "Current lobby is day " + (World.getTime() / 20 / 60 / 20).toFixed(2)) }) this.lastCookies = 0 -- cgit