mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
fix test failure
This commit is contained in:
parent
a223486497
commit
ff41b7631d
2 changed files with 8 additions and 14 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue