fix test failure

This commit is contained in:
theelk801 2023-04-09 15:44:30 -04:00
parent a223486497
commit ff41b7631d
2 changed files with 8 additions and 14 deletions

View file

@ -8,10 +8,7 @@ import mage.game.permanent.Permanent;
import mage.game.stack.Spell;
import mage.watchers.Watcher;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.*;
/**
* @author LevelX2
@ -44,7 +41,7 @@ public class ConvokeWatcher extends Watcher {
.getState()
.getWatcher(ConvokeWatcher.class)
.convokingCreatures
.get(mor);
.getOrDefault(mor, Collections.emptySet());
}
public static boolean checkConvoke(MageObjectReference mor, Permanent permanent, Game game) {