mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
server: fixed broken games with banned players (regression)
This commit is contained in:
parent
6cd8649857
commit
f5c47686ac
2 changed files with 16 additions and 3 deletions
|
|
@ -53,16 +53,16 @@ public class GameOptions implements Serializable, Copyable<GameOptions> {
|
|||
/**
|
||||
* Names of users banned from participating in the game
|
||||
*/
|
||||
public Set<String> bannedUsers = Collections.emptySet();
|
||||
public Set<String> bannedUsers = new HashSet<>();
|
||||
|
||||
/**
|
||||
* Cards to be given to each player as emblems
|
||||
*/
|
||||
public Collection<DeckCardInfo> perPlayerEmblemCards = Collections.emptySet();
|
||||
public Collection<DeckCardInfo> perPlayerEmblemCards = new HashSet<>();
|
||||
/**
|
||||
* Cards to be given to the starting player as emblems
|
||||
*/
|
||||
public Collection<DeckCardInfo> globalEmblemCards = Collections.emptySet();
|
||||
public Collection<DeckCardInfo> globalEmblemCards = new HashSet<>();
|
||||
|
||||
|
||||
// PLANECHASE game mode
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue