mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Join game error
This commit is contained in:
parent
89770db58e
commit
7b511c5e7a
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ public class TablesPanel extends javax.swing.JPanel {
|
||||||
int modelRow = Integer.valueOf( e.getActionCommand() );
|
int modelRow = Integer.valueOf( e.getActionCommand() );
|
||||||
UUID tableId = (UUID)tableModel.getValueAt(modelRow, 9);
|
UUID tableId = (UUID)tableModel.getValueAt(modelRow, 9);
|
||||||
UUID gameId = (UUID)tableModel.getValueAt(modelRow, 8);
|
UUID gameId = (UUID)tableModel.getValueAt(modelRow, 8);
|
||||||
String state = (String)tableModel.getValueAt(modelRow, 5);
|
String state = (String)tableModel.getValueAt(modelRow, 6);
|
||||||
boolean isTournament = (Boolean)tableModel.getValueAt(modelRow, 7);
|
boolean isTournament = (Boolean)tableModel.getValueAt(modelRow, 7);
|
||||||
String owner = (String)tableModel.getValueAt(modelRow, 1);
|
String owner = (String)tableModel.getValueAt(modelRow, 1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue