Skip to content

Commit

Permalink
chore(bobsbuddy): bump re-simulation limit to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Aug 25, 2023
1 parent 9bc60eb commit 631b019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Hearthstone Deck Tracker/BobsBuddy/BobsBuddyInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ internal async void UpdateOpponentHand(Entity entity, Entity copy)
_input.OpponentHand.Clear();
_input.OpponentHand.AddRange(entities);

if(_reRunCount++ <= 2)
if(_reRunCount++ <= 10)
{
DebugLog($"Opponent hand changed, re-running simulation! (#{_reRunCount})");
if(ShouldRun() && !RunSimulationAfterCombat)
Expand Down

0 comments on commit 631b019

Please sign in to comment.