From 7f352a16e2eee5faa27c8c462a3e96f30780abca Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 5 Feb 2022 17:49:57 +0800 Subject: remove warning because its bugged atm --- features/dungeonSolvers/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 427f78d..4993ac9 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -434,13 +434,13 @@ class DungeonSolvers extends Feature { this.blazes = this.blazes.reverse() } - let lastHp = -1 - this.blazes.forEach(b=>{ - if(b.getEntity().func_110143_aJ() === lastHp){ - if(this.blazeSolver.getValue())ChatLib.chat(this.FeatureManager.messagePrefix + "&cWARNING: Detected 2 blazes with the same hp. (" + lastHp + "," + b.getEntity().func_110143_aJ() + ")") - } - lastHp = b.getEntity().func_110143_aJ() - }) + // let lastHp = -1 TODO: fix this + // this.blazes.forEach(b=>{ + // if(b.getEntity().func_110143_aJ() === lastHp){ + // // if(this.blazeSolver.getValue())ChatLib.chat(this.FeatureManager.messagePrefix + "&cWARNING: Detected 2 blazes with the same hp. (" + lastHp + "," + b.getEntity().func_110143_aJ() + ")") + // } + // lastHp = b.getEntity().func_110143_aJ() + // }) } } } -- cgit