* Darft - Play countdown sound during drafting only if no card from curretn booster was draft.

This commit is contained in:
LevelX2 2014-11-02 12:12:39 +01:00
parent 39d2551996
commit 532345e28a
3 changed files with 10 additions and 9 deletions

View file

@ -261,7 +261,7 @@ public class DraftPanel extends javax.swing.JPanel {
text = text + Integer.toString(second);
}
this.txtTimeRemaining.setText(text);
if (s==6) {
if (s==6 && !draftBooster.isEmptyGrid()) {
AudioManager.playOnCountdown1();
}
}