mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
* Oathbreaker format - Fixed endless loop on match init (#6695).
This commit is contained in:
parent
cb7c787c37
commit
16adeadd8e
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ public class OathbreakerFreeForAll extends GameCommanderImpl {
|
|||
if (player != null) {
|
||||
Set<UUID> commanders = this.playerOathbreakers.getOrDefault(player.getId(), new HashSet<>());
|
||||
Set<UUID> spells = this.playerSignatureSpells.getOrDefault(player.getId(), new HashSet<>());
|
||||
for (UUID commanderId : getCommandersIds(player, commanderCardType)) {
|
||||
for (UUID commanderId : super.getCommandersIds(player, commanderCardType)) {
|
||||
switch (commanderCardType) {
|
||||
case ANY:
|
||||
res.add(commanderId);
|
||||
|
|
Loading…
Reference in a new issue