diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-04 14:01:32 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-04 14:01:32 +0800 |
commit | 8016fca7343de58e1b68508793f2a6ad3b97d221 (patch) | |
tree | 8f89e56dfcf8f47fdce52bdc1f6bedc4a435ec03 /features/globalSettings | |
parent | ae748a62f6424b0ac2604c2cceb551b0ca5742b2 (diff) | |
download | SoopyV2-8016fca7343de58e1b68508793f2a6ad3b97d221.tar.gz SoopyV2-8016fca7343de58e1b68508793f2a6ad3b97d221.tar.bz2 SoopyV2-8016fca7343de58e1b68508793f2a6ad3b97d221.zip |
make day counter 2dp
Diffstat (limited to 'features/globalSettings')
-rw-r--r-- | features/globalSettings/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 |