Added Tidespout Tyrant, Shallow Grave, Xantid Swarm, Goblin War Strike, Wound Reflection, Children of Korlis and Sneak Attack.

This commit is contained in:
LevelX2 2014-03-26 16:58:55 +01:00
parent 0afcaa5455
commit 601d1be24f
10 changed files with 756 additions and 3 deletions

View file

@ -1172,7 +1172,7 @@ public abstract class GameImpl<T extends GameImpl<T>> implements Game, Serializa
@Override
public void addDelayedTriggeredAbility(DelayedTriggeredAbility delayedAbility) {
DelayedTriggeredAbility newAbility = (DelayedTriggeredAbility) delayedAbility.copy();
DelayedTriggeredAbility newAbility = delayedAbility.copy();
newAbility.newId();
state.addDelayedTriggeredAbility(newAbility);
}

View file

@ -47,7 +47,7 @@ import mage.watchers.WatcherImpl;
*/
public class PlayerLostLifeWatcher extends WatcherImpl<PlayerLostLifeWatcher> {
private Map<UUID, Integer> amountOfLifeLostThisTurn = new HashMap<UUID, Integer>();
private final Map<UUID, Integer> amountOfLifeLostThisTurn = new HashMap<>();
public PlayerLostLifeWatcher() {
super("PlayerLostLifeWatcher", WatcherScope.GAME);