diff options
author | jakeQT <96396730+jakeQT@users.noreply.github.com> | 2022-06-17 22:32:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 22:32:00 +0800 |
commit | 44ce6c6aedd7d1e08814ad08cfeeb526c665ad06 (patch) | |
tree | 472820f91b10f72b9b4fcbf1048d128699a84698 /features | |
parent | a6a7f33795b51ea679e048771dd9ffc5fcc365c5 (diff) | |
download | SoopyV2-44ce6c6aedd7d1e08814ad08cfeeb526c665ad06.tar.gz SoopyV2-44ce6c6aedd7d1e08814ad08cfeeb526c665ad06.tar.bz2 SoopyV2-44ce6c6aedd7d1e08814ad08cfeeb526c665ad06.zip |
Update index.js
Diffstat (limited to 'features')
-rw-r--r-- | features/events/index.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/features/events/index.js b/features/events/index.js index a7cdbe5..200e0cc 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -81,6 +81,10 @@ class Events extends Feature { return } this.slayerLocationDataH[user] = [loc, Date.now()] + if (this.otherInquisPing.getValue()) { + Client.showTitle("&r&6&l[&b&l&kO&6&l] MINOS INQUISITOR [&b&l&kO&6&l]", `${user}'s Inquisitor`, 0, 50, 10); + } + } renderWorld(ticks) { @@ -121,9 +125,6 @@ class Events extends Feature { if (this.otherInquisWaypoints.getValue()) { Object.keys(this.slayerLocationDataH).forEach(key => { - if (this.otherInquisPing.getValue()) { - Client.showTitle("&r&6&l[&b&l&kO&6&l] MINOS INQUISITOR [&b&l&kO&6&l]", "", 0, 50, 10); - } drawCoolWaypoint(this.slayerLocationDataH[key][0][0], this.slayerLocationDataH[key][0][1], this.slayerLocationDataH[key][0][2], 255, 0, 0, { name: key + "'s inquis" }) }) } |