aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonSolvers/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'features/dungeonSolvers/index.js')
-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()
+ // })
}
}
}