mirror of
https://github.com/correl/mage.git
synced 2025-04-05 09:12:29 -09:00
* Shared Fate - Added zoneChangeCounter to name of exile window.
This commit is contained in:
parent
1798f5a151
commit
2836f9903e
1 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.AsThoughEffectImpl;
|
||||
|
@ -17,8 +18,6 @@ import mage.players.Player;
|
|||
import mage.target.common.TargetOpponent;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author emerald000 / HCrescent
|
||||
*/
|
||||
|
@ -75,7 +74,7 @@ class SharedFateReplacementEffect extends ReplacementEffectImpl {
|
|||
playerToDraw.moveCardsToExile(
|
||||
card, source, game, false,
|
||||
CardUtil.getExileZoneId(source.getSourceId().toString() + sourcePermanent.getZoneChangeCounter(game) + playerToDraw.getId().toString(), game),
|
||||
sourcePermanent.getIdName() + " (" + playerToDraw.getName() + ')');
|
||||
sourcePermanent.getIdName() + "-" + sourcePermanent.getZoneChangeCounter(game) + " (" + playerToDraw.getName() + ')');
|
||||
card.setFaceDown(true, game);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue