mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 23:12:10 -08:00
remove DamageDoneWatcher from default watchers
This commit is contained in:
parent
c164d70135
commit
6155f2d403
5 changed files with 11 additions and 6 deletions
|
|
@ -9,10 +9,12 @@ import mage.watchers.common.DamageDoneWatcher;
|
|||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
|
||||
public class SourceDealtDamageCondition implements Condition {
|
||||
private final int value;
|
||||
|
||||
/**
|
||||
* Must add DamageDoneWatcher on card init
|
||||
*/
|
||||
public SourceDealtDamageCondition(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
|
@ -29,4 +31,4 @@ public class SourceDealtDamageCondition implements Condition {
|
|||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1339,7 +1339,6 @@ public abstract class GameImpl implements Game {
|
|||
newWatchers.add(new CastSpellLastTurnWatcher());
|
||||
newWatchers.add(new PlayerLostLifeWatcher());
|
||||
newWatchers.add(new BlockedAttackerWatcher());
|
||||
newWatchers.add(new DamageDoneWatcher()); // TODO: no need to be default watcher
|
||||
newWatchers.add(new PlanarRollWatcher()); // TODO: no need to be default watcher
|
||||
newWatchers.add(new AttackedThisTurnWatcher());
|
||||
newWatchers.add(new CardsDrawnThisTurnWatcher());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue