Fix missing reset code

This commit is contained in:
Oleg Agafonov 2019-08-03 00:44:27 +04:00
parent 090ea444d9
commit 2d3804079f
16 changed files with 78 additions and 74 deletions

View file

@ -1,14 +1,15 @@
package mage.watchers.common;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
import mage.constants.WatcherScope;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.watchers.Watcher;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
/**
* @author BetaSteward_at_googlemail.com
* @author Loki
@ -48,9 +49,9 @@ public class LandfallWatcher extends Watcher {
@Override
public void reset() {
super.reset();
playerPlayedLand.clear();
landEnteredBattlefield.clear();
super.reset();
}
public boolean landPlayed(UUID playerId) {