* Oathbreaker: fixed that signature spell can moves to graveyard instead forced move to command zone (#5819);

This commit is contained in:
Oleg Agafonov 2019-06-14 21:20:16 +04:00
parent 03f99016d3
commit 1d7cac3059
4 changed files with 41 additions and 20 deletions

View file

@ -92,7 +92,7 @@ public abstract class GameCommanderImpl extends GameImpl {
public void initCommanderEffects(Card commander, Player player, Ability commanderAbility) {
// all commander effects must be independent from sourceId or controllerId
commanderAbility.addEffect(new CommanderReplacementEffect(commander.getId(), alsoHand, alsoLibrary));
commanderAbility.addEffect(new CommanderReplacementEffect(commander.getId(), alsoHand, alsoLibrary, false, "Commander"));
commanderAbility.addEffect(new CommanderCostModification(commander.getId()));
}