From 735d50d9a298a6da66974eeec5efa4fcbb95a733 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 6 Sep 2022 21:12:39 +0800 Subject: add message when soopy starts loading/unloading --- featureClass/featureManager.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'featureClass') diff --git a/featureClass/featureManager.js b/featureClass/featureManager.js index 09799c6..75ffa48 100644 --- a/featureClass/featureManager.js +++ b/featureClass/featureManager.js @@ -747,6 +747,7 @@ class FeatureManager { } loadSoopy() { + ChatLib.chat(this.messagePrefix + "Loading SoopyV2...") this.loadFeatureMetas() this.loadFeatureSettings() @@ -758,6 +759,7 @@ class FeatureManager { }) this.finishedLoading = true + ChatLib.chat(this.messagePrefix + "SoopyV2 Loaded!") } loadFeature(feature) { //run in seperate thread so onenable can do network requests -- cgit