diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-02-04 16:10:29 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-02-04 16:10:29 +0800 |
commit | 7882632751f1132e67dcee92389e82317b8db123 (patch) | |
tree | 833899d85393b046304ffb2f5db50e52ddddd005 /features/dataLoader | |
parent | f724d7e9f5ec6d5e2f004a240f5117a41a752dc8 (diff) | |
download | SoopyV2-7882632751f1132e67dcee92389e82317b8db123.tar.gz SoopyV2-7882632751f1132e67dcee92389e82317b8db123.tar.bz2 SoopyV2-7882632751f1132e67dcee92389e82317b8db123.zip |
maby fix buttons like settings not showing up in /soopyv2 menu
Diffstat (limited to 'features/dataLoader')
-rw-r--r-- | features/dataLoader/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dataLoader/index.js b/features/dataLoader/index.js index 27ab173..b4fb31a 100644 --- a/features/dataLoader/index.js +++ b/features/dataLoader/index.js @@ -78,7 +78,7 @@ class DataLoader extends Feature { this.stats["Area"] = undefined this.stats["Dungeon"] = undefined - if(World.getWorld() && TabList.getNames()){ + if(World.isLoaded() && TabList.getNames()){ TabList.getNames().forEach(n=>{ n = ChatLib.removeFormatting(n) if(n.includes(": ")){ |