cleanup usages of BlockedAttackerWatcher

This commit is contained in:
xenohedron 2023-11-29 20:43:17 -05:00
parent cd439ab8c8
commit a4cc086775
10 changed files with 5 additions and 12 deletions

View file

@ -1,4 +1,3 @@
package mage.watchers.common;
import java.util.HashMap;
@ -9,7 +8,6 @@ import mage.MageObjectReference;
import mage.constants.WatcherScope;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.events.GameEvent.EventType;
import mage.game.permanent.Permanent;
import mage.watchers.Watcher;
@ -21,6 +19,9 @@ public class BlockedAttackerWatcher extends Watcher {
private final Map<MageObjectReference, Set<MageObjectReference>> blockData = new HashMap<>();
/**
* Game default watcher
*/
public BlockedAttackerWatcher() {
super(WatcherScope.GAME);
}