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
|
|
@ -231,6 +231,10 @@ public class TableController {
|
|||
}
|
||||
sb.append("\n\nSelect a deck that is appropriate for the selected format and try again!");
|
||||
user.showUserMessage("Join Table", sb.toString());
|
||||
if (isOwner(userId)) {
|
||||
logger.debug("New table removed because owner submitted invalid deck tableId " + table.getId());
|
||||
TableManager.getInstance().removeTable(table.getId());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue