mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
tests: real fix of Auratouched Mage - miss draw card effect (#9462)
This commit is contained in:
parent
b30e9ec348
commit
38be371c25
2 changed files with 35 additions and 12 deletions
|
|
@ -9,6 +9,7 @@ import mage.abilities.Ability;
|
|||
import mage.constants.PutCards;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.util.CardUtil;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
/**
|
||||
|
|
@ -142,6 +143,6 @@ public class SpellStack extends ArrayDeque<StackObject> {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return this.size() + (this.isEmpty() ? "" : " (top: " + this.getFirst().toString() + ")");
|
||||
return this.size() + (this.isEmpty() ? "" : " (top: " + CardUtil.substring(this.getFirst().toString(), 100) + ")");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue