From 3845a3cb3f8a6f919e67c4e9e8039900b0afce1a Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 25 Dec 2021 02:48:31 +0800 Subject: fix not in skyblock detection --- features/slayers/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'features/slayers/index.js') diff --git a/features/slayers/index.js b/features/slayers/index.js index d67d0b9..8827343 100644 --- a/features/slayers/index.js +++ b/features/slayers/index.js @@ -119,6 +119,8 @@ class Slayers extends Feature { } renderWorld(ticks){ + + if(this.emanBoss) drawBoxAtEntity(this.emanBoss, 0, 255, 0, 1, -3, ticks, 4, false) Object.values(this.beaconPoints).forEach(line=>{ let lastPoint = undefined @@ -138,8 +140,6 @@ class Slayers extends Feature { drawBoxAtBlock(x-0.5, y+0.7, z-0.5, 255, 0, 0) }) - if(this.emanBoss) drawBoxAtEntity(this.emanBoss, 0, 255, 0, 1, -3, ticks, 4, false) - Object.values(this.beaconLocations).forEach(loc=>{ drawFilledBox(loc[0]+0.5, loc[1], loc[2]+0.5, 1.01, 1.01, 0, 0, 1, 1, true) }) -- cgit