Skip to content

Commit

Permalink
fixes game start detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Epix37 committed Aug 18, 2015
1 parent b1729c3 commit f8fd83a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Hearthstone Deck Tracker/HsLogReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ private long FindLastGameStart(FileStream fs)
}
else if(line.Contains("End Spectator"))
offset = tempOffset;
else if(line.Contains("CREATE_GAME"))
else if(line.Contains("CREATE_GAME") && line.Contains("GameState."))
{
if(foundSpectatorStart)
{
Expand Down

0 comments on commit f8fd83a

Please sign in to comment.