mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Prevent that the tournament sub tables are deleted by expire check (delete logik must be added).
This commit is contained in:
parent
f1ce18cccf
commit
ded726d2ef
3 changed files with 12 additions and 3 deletions
|
@ -319,8 +319,8 @@ public class TableManager {
|
|||
if (player != null && player.isHuman()) {
|
||||
canBeRemoved = false;
|
||||
}
|
||||
/* temporarily fix for issue #262 */
|
||||
if(table.getGameType().equals("Two Player Duel")){
|
||||
// tournament sub tables may not be removed, will be done by the tournament itself
|
||||
if(table.isTournamentSubTable()){
|
||||
canBeRemoved = false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -196,6 +196,7 @@ public class TournamentController {
|
|||
try {
|
||||
TableManager tableManager = TableManager.getInstance();
|
||||
Table table = tableManager.createTable(GamesRoomManager.getInstance().getMainRoomId(), matchOptions);
|
||||
table.setTournamentSubTable(true);
|
||||
TournamentPlayer player1 = pair.getPlayer1();
|
||||
TournamentPlayer player2 = pair.getPlayer2();
|
||||
tableManager.addPlayer(getPlayerSessionId(player1.getPlayer().getId()), table.getId(), player1.getPlayer(), player1.getPlayerType(), player1.getDeck());
|
||||
|
|
|
@ -56,7 +56,7 @@ public class Table implements Serializable {
|
|||
private Seat[] seats;
|
||||
private int numSeats;
|
||||
private boolean isTournament;
|
||||
private boolean isTournamentSubTable;
|
||||
private boolean tournamentSubTable;
|
||||
private DeckValidator validator;
|
||||
private TableState state = TableState.WAITING;
|
||||
private Match match;
|
||||
|
@ -227,4 +227,12 @@ public class Table implements Serializable {
|
|||
return controllerName;
|
||||
}
|
||||
|
||||
public boolean isTournamentSubTable() {
|
||||
return tournamentSubTable;
|
||||
}
|
||||
|
||||
public void setTournamentSubTable(boolean tournamentSubTable) {
|
||||
this.tournamentSubTable = tournamentSubTable;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue