Skip to content

Commit

Permalink
remove debug file exports + correct version
Browse files Browse the repository at this point in the history
  • Loading branch information
herby2212 committed Dec 10, 2022
1 parent b8e577b commit 3ab35c7
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions CardPackOpeningCounter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class CardPackOpeningCounter : IPlugin
public string Description => "A HDT Plugin that assists you when your opening your glorious packs \nby counting the received cards and displaying the amount\nbased on rarity and quality (normal & golden).";
public string ButtonText => "Open the Card Pack Opener Counter";
public string Author => "herby2212";
public Version Version => new Version(1, 0, 0);
public Version Version => new Version(1, 1, 0);


protected int i = 0;
Expand Down Expand Up @@ -189,8 +189,7 @@ private void analyzeLogFile(String netLogFilePath)
packOpeningCards += s;
}
}
String filename = @"E:\Spiele\Blizzard\Hearthstone\AnalyzedLog.txt";
File.WriteAllText(filename, test);

worker.DoWork -= new DoWorkEventHandler(CardAddHandler);
worker.RunWorkerCompleted -= new RunWorkerCompletedEventHandler(CardAddCompleted);

Expand Down Expand Up @@ -243,9 +242,6 @@ private void CardAddHandler(object sender, DoWorkEventArgs e)
}
openings += "PACK END\n";
}

String filename = @"E:\Spiele\Blizzard\Hearthstone\AnalyzedCardsFromLog.txt";
File.WriteAllText(filename, openings);
}

private void addCardBasedOnRarity(int cardId, int premium)
Expand Down

0 comments on commit 3ab35c7

Please sign in to comment.