From 38b52c027450cb4c26d62a3beb5822c6c607e8c2 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 23 Nov 2021 21:21:56 +0800 Subject: Add basic performance tracking, will make this a dedicated gui sometime --- 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 f7ae0b0..eb1e088 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -9,6 +9,7 @@ import GuiPage from "../soopyGui/GuiPage" import SoopyTextElement from "../../../guimanager/GuiElement/SoopyTextElement"; import Notification from "../../../guimanager/Notification"; import logger from "../../logger"; +import soopyV2Server from "../../socketConnection"; const Files = Java.type("java.nio.file.Files") const Paths = Java.type("java.nio.file.Paths") const JavaString = Java.type("java.lang.String") @@ -42,6 +43,8 @@ class Hud extends Feature { // this.GuiPage = new FirstLoadingPage(this) + soopyV2Server.reportErrorsSetting = this.reportErrorsSetting + this.registerChat("&aYour new API key is &r&b${key}&r", this.newKey) // new Thread(()=>{ -- cgit