From ae748a62f6424b0ac2604c2cceb551b0ca5742b2 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 4 Jun 2022 13:55:29 +0800 Subject: add current lobby day display --- features/globalSettings/index.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'features/globalSettings') diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 856791e..8ece6f8 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -109,6 +109,9 @@ class GlobalSettings extends Feature { this.registerCommand("sweight", (user = Player.getName()) => { this.soopyWeight(user) }) + this.registerCommand("lobbyday", () => { + ChatLib.chat(this.FeatureManager.messagePrefix + "Current lobby is day " + (World.getTime() / 20 / 60 / 20).toFixed(1)) + }) this.lastCookies = 0 -- cgit