Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
fixed detection for purify screen
Browse files Browse the repository at this point in the history
  • Loading branch information
MgAl2O4 committed Jan 23, 2021
1 parent eb3229e commit eccfef8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions SINoCOLO/GameLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,10 @@ private bool OnScan_Purify(ScannerPurify.ScreenData screenData)
state = EState.Purify;
OnStateChanged();

waitingForCombat = false;
waitingForCombatReport = false;
waitingForEventSummary = false;

cachedDataMessageBox = null;
purifySlot = randGen.Next(10);
}
Expand Down
4 changes: 2 additions & 2 deletions SINoCOLO/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("15.0.0.0")]
[assembly: AssemblyFileVersion("15.0.0.0")]
[assembly: AssemblyVersion("16.0.0.0")]
[assembly: AssemblyFileVersion("16.0.0.0")]
2 changes: 1 addition & 1 deletion SINoVision/ScannerPurify.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public override string ToString()

private FastPixelMatch matchLabelI = new FastPixelMatchMono(230, 255);
private FastPixelMatch matchLabelO = new FastPixelMatchMono(0, 140);
private FastPixelMatch matchTimerI = new FastPixelMatchMono(200, 245);
private FastPixelMatch matchTimerI = new FastPixelMatchMono(170, 245);
private FastPixelMatch matchTimerO = new FastPixelMatchHSV(-5, 15, 50, 100, 10, 60);
private FastPixelMatch matchPause = new FastPixelMatchMono(230, 255);
private FastPixelMatch matchBurstCenter = new FastPixelMatchHueMono(20, 40, 130, 195);
Expand Down

0 comments on commit eccfef8

Please sign in to comment.