mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed a bug of FirstSpellCastThisTurnWatcher (fixes #2871).
This commit is contained in:
parent
26ce8e0bcc
commit
e6be0577bb
1 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@ package mage.watchers.common;
|
|||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.WatcherScope;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
|
@ -26,7 +25,7 @@ public class FirstSpellCastThisTurnWatcher extends Watcher {
|
|||
public FirstSpellCastThisTurnWatcher(final FirstSpellCastThisTurnWatcher watcher) {
|
||||
super(watcher);
|
||||
playerFirstSpellCast.putAll(watcher.playerFirstSpellCast);
|
||||
playerFirstCastSpell.putAll(watcher.playerFirstSpellCast);
|
||||
playerFirstCastSpell.putAll(watcher.playerFirstCastSpell);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue