aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-02-05 17:49:57 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-02-05 17:49:57 +0800
commit7f352a16e2eee5faa27c8c462a3e96f30780abca (patch)
tree6aaf3f1b511567a4fc3bb7090b2fb96504fb28b4
parent63c2cacccbb356093fa2b594d1e1df96a446f4a3 (diff)
downloadSoopyV2-7f352a16e2eee5faa27c8c462a3e96f30780abca.tar.gz
SoopyV2-7f352a16e2eee5faa27c8c462a3e96f30780abca.tar.bz2
SoopyV2-7f352a16e2eee5faa27c8c462a3e96f30780abca.zip
remove warning because its bugged atm
-rw-r--r--features/dungeonSolvers/index.js14
1 files 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()
+ // })
}
}
}