diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-09-21 22:02:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-21 22:02:47 +0800 |
commit | e633afbafaa114c74e9cbfb966004026659075e1 (patch) | |
tree | f07de3cbd32f544b913c5d944700f3a141c89c57 /src | |
parent | f3fdefe9e5e58f23e2ee8e14d6d77d056e09cedd (diff) | |
download | SoopyV2-e633afbafaa114c74e9cbfb966004026659075e1.tar.gz SoopyV2-e633afbafaa114c74e9cbfb966004026659075e1.tar.bz2 SoopyV2-e633afbafaa114c74e9cbfb966004026659075e1.zip |
w
Diffstat (limited to 'src')
-rw-r--r-- | src/features/slayers/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/slayers/index.js b/src/features/slayers/index.js index 5838f10..a88734f 100644 --- a/src/features/slayers/index.js +++ b/src/features/slayers/index.js @@ -559,8 +559,8 @@ class Slayers extends Feature { }); } if (this.MinibossOffWhenBoss.getValue() && this.bossSpawnedMessage && (this.minibossEntity.length > 0 || this.areaMiniEntity.length > 0)) { - this.minibossEntity.forEach(m => m.delete()) - this.areaMiniEntity.forEach(m => m.delete()) + this.minibossEntity = [] + this.areaMiniEntity = [] } } |