From 34d754151df42f073c5eaa948350347b9546a5b3 Mon Sep 17 00:00:00 2001 From: MgAl2O4 <51430403+MgAl2O4@users.noreply.github.com> Date: Sat, 27 Feb 2021 22:20:01 -0500 Subject: [PATCH] adjusted SP bar thresholds for special colo --- SINoVision/ScannerCombatBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SINoVision/ScannerCombatBase.cs b/SINoVision/ScannerCombatBase.cs index 5336331..04ea7aa 100644 --- a/SINoVision/ScannerCombatBase.cs +++ b/SINoVision/ScannerCombatBase.cs @@ -125,7 +125,7 @@ public override string ToString() protected Point[] posStatOffset = { new Point(1, 3), new Point(14, 3), new Point(26, 3), new Point(37, 3) }; private FastPixelMatch matchSPFull = new FastPixelMatchHueMono(40, 55, 90, 255); - private FastPixelMatch matchSPEmpty = new FastPixelMatchHueMono(0, 360, 0, 50); + private FastPixelMatch matchSPEmpty = new FastPixelMatchMono(0, 55); private FastPixelMatch matchActionAvail = new FastPixelMatchMono(180, 255); private FastPixelMatch matchBoostIn = new FastPixelMatchHueMono(-10, 60, 80, 255); private FastPixelMatch matchBoostOut = new FastPixelMatchHSV(-40, 30, 0, 100, 0, 40);