Fix Witch-king of Angmar (watcher field clear)

This commit is contained in:
xenohedron 2023-07-20 18:44:45 -04:00
parent 375dfa86d9
commit 6e0c5e6f05

View file

@ -1,4 +1,3 @@
package mage.watchers.common;
import java.util.HashSet;
@ -12,7 +11,7 @@ import mage.util.CardUtil;
import mage.watchers.Watcher;
/**
* Watcher stores whitch sources did damage to a player
* Watcher stores which sources did damage to a player
*
* @author LevelX
*/
@ -58,5 +57,6 @@ public class PlayerDamagedBySourceWatcher extends Watcher {
public void reset() {
super.reset();
damageSourceIds.clear();
combatDamageSourceIds.clear();
}
}