From 41aeba198222468f386d6636e44e9231338ce860 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 30 Aug 2022 20:36:33 +0800 Subject: clear diana waypoints command default values for inquis alert location --- features/globalSettings/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'features/globalSettings') diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 5465629..9e58d6f 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -230,7 +230,7 @@ class GlobalSettings extends Feature { delay(time * 1000, () => { packetReceived.unregister() tick.unregister() - ChatLib.chat(this.FeatureManager.messagePrefix + "Tps: " + (ticks / time).toFixed(1)) + ChatLib.chat(this.FeatureManager.messagePrefix + "Tps: " + Math.min(20, ticks / time).toFixed(1)) }) }) @@ -353,6 +353,8 @@ class GlobalSettings extends Feature { return ret })) { + Client.showTitle("SNIPE THING", "CHECK CHAT", 20, 60, 20) + new TextComponent(this.FeatureManager.messagePrefix + "Bin found " + numberWithCommas(a.starting_bid) + " " + a.item_name).setClick("run_command", "/viewauction " + a.uuid).chat() } }) -- cgit