diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-22 14:20:46 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-22 14:20:46 +0800 |
commit | c25141fb3cf06f5e86944eda239a3a29c9ca3dc3 (patch) | |
tree | 79d670d00308bef4271839971319c0e240b7e1a8 /src | |
parent | ce6dac24ef4dfb85283374dc3c8da461404f70fe (diff) | |
download | SoopyV2-c25141fb3cf06f5e86944eda239a3a29c9ca3dc3.tar.gz SoopyV2-c25141fb3cf06f5e86944eda239a3a29c9ca3dc3.tar.bz2 SoopyV2-c25141fb3cf06f5e86944eda239a3a29c9ca3dc3.zip |
+ fix another bug D:
+meta
Diffstat (limited to 'src')
-rw-r--r-- | src/features/stat_next_to_name/index.js | 2 | ||||
-rw-r--r-- | src/metadata.json | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/features/stat_next_to_name/index.js b/src/features/stat_next_to_name/index.js index 3845b66..4e743aa 100644 --- a/src/features/stat_next_to_name/index.js +++ b/src/features/stat_next_to_name/index.js @@ -76,7 +76,7 @@ class StatNextToName extends Feature { let keyValid = false let key = undefined new NonPooledThread(() => { - while (!this.FeatureManager.features["globalSettings"]?.class) { + while (!this.FeatureManager.features["globalSettings"] || !this.FeatureManager.features["globalSettings"].class) { Thread.sleep(1000) } diff --git a/src/metadata.json b/src/metadata.json index 359cfd6..74bbd2b 100644 --- a/src/metadata.json +++ b/src/metadata.json @@ -5,8 +5,8 @@ "entry": "index.js", "description": "SoopyV2", "name": "SoopyV2", - "version": "2.1.163", - "versionId": 290, + "version": "2.1.164", + "versionId": 291, "requires": [ "soopyApis", "soopyAddonsData", |