mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Table handling - Fixed a bug that if table owner tried to create a table with invalid deck, the table was added to the finished tables with no players.
This commit is contained in:
parent
f4b4184d99
commit
a57ebc5314
3 changed files with 9 additions and 7 deletions
|
|
@ -258,12 +258,8 @@ public class TableWaitingDialog extends MageDialog {
|
|||
|
||||
private void btnCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnCancelActionPerformed
|
||||
try {
|
||||
if (session.isTableOwner(roomId, tableId)) {
|
||||
session.removeTable(roomId, tableId);
|
||||
} else {
|
||||
if (!session.leaveTable(roomId, tableId)) {
|
||||
return; // already started, so leave no more possible
|
||||
}
|
||||
if (!session.leaveTable(roomId, tableId)) {
|
||||
return; // already started, so leave no more possible
|
||||
}
|
||||
} catch (Exception e) {
|
||||
//swallow exception
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue