Skip to content

Commit

Permalink
fix(DeckManager): respect auto selection for Whizbang
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Dec 18, 2023
1 parent c26b938 commit 0aa4a34
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ private void WhizbangDeckIdChange(int id, int value, IGame game)
game.Opponent.IsPlayingWhizbang = true;
if(!entity.IsPlayer)
return;
DeckManager.AutoSelectTemplateDeckById(game, value);
if(Config.Instance.AutoDeckDetection)
DeckManager.AutoSelectTemplateDeckById(game, value);
}

private void CreatorChanged(int id, int value, IGame game)
Expand Down

0 comments on commit 0aa4a34

Please sign in to comment.