diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-10-06 17:32:46 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-10-06 17:32:46 +0800 |
commit | ac4bec7b9a9feb8372ede945f9869c197789c660 (patch) | |
tree | f9e51136a48c1f13bd41a5e3b515e935a5e54ea8 /src/featureClass | |
parent | 26996a65c93de407e4a12403f967b722a6dbf710 (diff) | |
download | SoopyV2-ac4bec7b9a9feb8372ede945f9869c197789c660.tar.gz SoopyV2-ac4bec7b9a9feb8372ede945f9869c197789c660.tar.bz2 SoopyV2-ac4bec7b9a9feb8372ede945f9869c197789c660.zip |
Location hud element
Diffstat (limited to 'src/featureClass')
-rw-r--r-- | src/featureClass/featureManager.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/featureClass/featureManager.js b/src/featureClass/featureManager.js index eb2f0f9..0369dca 100644 --- a/src/featureClass/featureManager.js +++ b/src/featureClass/featureManager.js @@ -759,7 +759,11 @@ class FeatureManager { let loadedFeatures = new Map() + this.loadFeature("dataLoader") + Object.keys(this.featureMetas).forEach((feature) => { + if (feature === "dataLoader") return + if (this.featureSettingsData[feature] && this.featureSettingsData[feature].enabled) { loadedFeatures.set(feature, false) new Thread(() => { |