Default unique name for AI.

This commit is contained in:
johnm 2020-05-24 13:52:48 +01:00
parent f64549213f
commit 9df5c9ba68
2 changed files with 9 additions and 1 deletions

View file

@ -126,7 +126,9 @@ public class TablePlayerPanel extends javax.swing.JPanel {
private void cbPlayerTypeActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cbPlayerTypeActionPerformed
if (getPlayerType() != PlayerType.HUMAN) {
this.newPlayerPanel.setVisible(true);
} else {
this.newPlayerPanel.setPlayerName("Computer " + this.lblPlayerNum.getText().charAt(this.lblPlayerNum.getText().length() - 1),true,true);
}
else {
this.newPlayerPanel.setVisible(false);
}
this.revalidate();