From b6063423547b4af9a11bbc78595e40073b52d5b7 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 26 Jul 2022 20:27:59 +0800 Subject: remove ping display as it was somehow causing ping spikes --- features/hud/index.js | 47 ----------------------------------------------- metadata.json | 4 ++-- 2 files changed, 2 insertions(+), 49 deletions(-) diff --git a/features/hud/index.js b/features/hud/index.js index bb8d613..3980dff 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -150,15 +150,6 @@ class Hud extends Feature { this.showLobbyDayOnlyUnder30 = new ToggleSetting("Show Current Lobby Day ONLY WHEN under day 30", "", true, "lobby_day_30", this) this.hudElements.push(this.lobbyDayElement) - this.showPing = new ToggleSetting("Show Current Ping", "(Updates every 30s)", true, "show_ping", this) - this.pingElement = new HudTextElement() - .setText("&6Ping&7> &fLoading...") - .setToggleSetting(this.showPing) - .setLocationSetting(new LocationSetting("Ping Location", "Allows you to edit the location of the ping text", "show_ping_location", this, [10, 100, 1, 1]) - .requires(this.showPing) - .editTempText("&6Ping&7> &c312ms")) - this.hudElements.push(this.pingElement) - let hudStatTypes = { "cata": "Catacombs level + Exp", "totaldeaths": "Total deaths" @@ -270,44 +261,6 @@ class Hud extends Feature { this.registerEvent("renderWorld", this.renderWorld).registeredWhen(() => this.fpsEnabledSetting.getValue() && this.fpsFastSetting.getValue()) this.registerEvent("worldLoad", this.worldLoad) - this.registerStep(false, 30, () => { - if (this.showPing.getValue() && Client.getMinecraft().func_147104_D()) { - let pingNum = Client.getMinecraft().func_147104_D().field_78844_e - - let pingT = "&a" + pingNum + "ms" - if (pingNum > 150) { - pingT = "&e" + pingNum + "ms" - } - if (pingNum > 250) { - pingT = "&c" + pingNum + "ms" - } - - if (pingNum === -1) { - pingT = "Loading..." - } - this.pingElement.setText("&6Ping&7> " + pingT) - - serverPinger[m.ping](Client.getMinecraft().func_147104_D()); - } - }) - this.registerStep(false, 5, () => { - if (this.showPing.getValue() && Client.getMinecraft().func_147104_D()) { - let pingNum = Client.getMinecraft().func_147104_D().field_78844_e - - let pingT = "&a" + pingNum + "ms" - if (pingNum > 150) { - pingT = "&e" + pingNum + "ms" - } - if (pingNum > 250) { - pingT = "&c" + pingNum + "ms" - } - - if (pingNum === -1) { - return; - } - this.pingElement.setText("&6Ping&7> " + pingT) - } - }) this.petLevels = {} this.petText = "&6Pet&7> &fLoading..." diff --git a/metadata.json b/metadata.json index 89637ea..7de40d5 100644 --- a/metadata.json +++ b/metadata.json @@ -5,8 +5,8 @@ "entry": "index.js", "description": "SoopyV2", "name": "SoopyV2", - "version": "2.1.132", - "versionId": 259, + "version": "2.1.133", + "versionId": 260, "requires": [ "soopyApis", "soopyAddonsData", -- cgit