mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Added Tidespout Tyrant, Shallow Grave, Xantid Swarm, Goblin War Strike, Wound Reflection, Children of Korlis and Sneak Attack.
This commit is contained in:
parent
0afcaa5455
commit
601d1be24f
10 changed files with 756 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue