mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
Added printing format in case deck was invalidated
This commit is contained in:
parent
c632b207f9
commit
41b5181821
1 changed files with 2 additions and 2 deletions
|
|
@ -182,7 +182,7 @@ 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());
|
||||
logger.debug("New table removed because owner submitted invalid deck, format: " + table.getValidator().getName() + ", tableId: " + table.getId());
|
||||
TableManager.instance.removeTable(table.getId());
|
||||
}
|
||||
return false;
|
||||
|
|
@ -283,7 +283,7 @@ 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());
|
||||
logger.debug("New table removed because owner submitted invalid deck, format: " + table.getValidator().getName() + ", tableId " + table.getId());
|
||||
TableManager.instance.removeTable(table.getId());
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue