diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-11 21:05:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-11 21:05:06 +0800 |
commit | e474cef69d90869dea043e11d033c713133b4d26 (patch) | |
tree | b3d46a56a73e08930cbcbb8eeadca21d03125a68 /features | |
parent | a1b8da9d16d3c4a208908ed04c4e9a4228aafc8a (diff) | |
parent | 0679a5c7f51923b77b95f2e34b1d0107462db8db (diff) | |
download | SoopyV2-e474cef69d90869dea043e11d033c713133b4d26.tar.gz SoopyV2-e474cef69d90869dea043e11d033c713133b4d26.tar.bz2 SoopyV2-e474cef69d90869dea043e11d033c713133b4d26.zip |
Merge pull request #63 from EmeraldMerchant/patch-58
oops!
Diffstat (limited to 'features')
-rw-r--r-- | features/slayers/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/features/slayers/index.js b/features/slayers/index.js index 590c5b6..2d8e1fa 100644 --- a/features/slayers/index.js +++ b/features/slayers/index.js @@ -531,7 +531,7 @@ class Slayers extends Feature { this.cannotFindEmanBoss = false } else if (nameRemoveFormat.includes("Voidgloom Seraph") && ((name.getX() - Player.getX()) ** 2 + (name.getY() - Player.getY()) ** 2 + (name.getZ() - Player.getZ()) ** 2 < 25)) { this.emanBoss = name - assignActualEmanBoss(this.emanBoss) + this.assignActualEmanBoss(this.emanBoss) this.cannotFindEmanBoss = false } } @@ -622,12 +622,12 @@ class Slayers extends Feature { if (e[m.getCustomNameTag]() && e[m.getCustomNameTag]().includes("Voidgloom Seraph")) { if (Date.now() - this.nextIsBoss < 3000) { this.emanBoss = new Entity(e); - assignActualEmanBoss(this.emanBoss) + this.assignActualEmanBoss(this.emanBoss) this.nextIsBoss = false; } if (this.cannotFindEmanBoss && ((e[f.posX.Entity] - Player.getX()) ** 2 + (e[f.posY.Entity] - Player.getY()) ** 2 + (e[f.posZ.Entity] - Player.getZ()) ** 2 < 5)) { this.emanBoss = new Entity(e); - assignActualEmanBoss(this.emanBoss) + this.assignActualEmanBoss(this.emanBoss) this.cannotFindEmanBoss = false } |