Prevent that the tournament sub tables are deleted by expire check (delete logik must be added).

This commit is contained in:
LevelX2 2013-07-15 15:03:38 +02:00
parent f1ce18cccf
commit ded726d2ef
3 changed files with 12 additions and 3 deletions

View file

@ -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;
}
}