diff --git a/SerialPrograms/Source/PokemonLGPE/Inference/Battles/PokemonLGPE_BattleArrowDetector.cpp b/SerialPrograms/Source/PokemonLGPE/Inference/Battles/PokemonLGPE_BattleArrowDetector.cpp index 6d67b1e908..62beae17e4 100644 --- a/SerialPrograms/Source/PokemonLGPE/Inference/Battles/PokemonLGPE_BattleArrowDetector.cpp +++ b/SerialPrograms/Source/PokemonLGPE/Inference/Battles/PokemonLGPE_BattleArrowDetector.cpp @@ -54,7 +54,7 @@ bool BattleArrowDetector::detect(const ImageViewRGB32& screen){ //cropped.save("test-object-" + std::to_string(c++) + ".png"); double rmsd = matcher.rmsd(cropped); //cout << rmsd << endl; - if (rmsd < 110){ + if (rmsd < 116){ return true; } }