diff options
-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 = [] } } |