diff options
| author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-01 16:56:59 +0800 |
|---|---|---|
| committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-01 16:56:59 +0800 |
| commit | d84843a15f666c7ca3216960f030b66442bc0c23 (patch) | |
| tree | 5ae4809d83e7099115f9758ca56c4608d8853a58 | |
| parent | 45a31eda50895eca216d6a278f8e86bcdb7b0889 (diff) | |
| download | SoopyV2-d84843a15f666c7ca3216960f030b66442bc0c23.tar.gz SoopyV2-d84843a15f666c7ca3216960f030b66442bc0c23.tar.bz2 SoopyV2-d84843a15f666c7ca3216960f030b66442bc0c23.zip | |
+ fix bug
| -rw-r--r-- | features/dungeonSolvers/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index cf248c3..cd672a8 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -497,7 +497,7 @@ class DungeonSolvers extends Feature { } } - if (this.bloodCampAssist.getValue()) { + if (this.bloodCampAssist.getValue() && this.skulls) { for (let skull of this.skulls) { if (this.eMovingThing[skull.getUUID().toString()] && this.eMovingThing[skull.getUUID().toString()].timeTook) { let skullE = skull.getEntity(); |
