diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-09-15 11:35:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 11:35:20 +0800 |
commit | e5536cd6e377c24ef73942fdaf88a962981441bd (patch) | |
tree | 86521e7b44d9d98226b88a2378db9975c4560d4f | |
parent | a5a0b3b2157b69297d5592061cda373c1814db00 (diff) | |
download | SoopyV2-e5536cd6e377c24ef73942fdaf88a962981441bd.tar.gz SoopyV2-e5536cd6e377c24ef73942fdaf88a962981441bd.tar.bz2 SoopyV2-e5536cd6e377c24ef73942fdaf88a962981441bd.zip |
fixed box around miniboss off when boss
= made miniboss off when boss actually stop rendering already existing boxes
-rw-r--r-- | features/slayers/index.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/features/slayers/index.js b/features/slayers/index.js index 3480982..1b890d4 100644 --- a/features/slayers/index.js +++ b/features/slayers/index.js @@ -558,6 +558,10 @@ 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()) + } } tick() { |