mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Merge pull request #3294 from ingmargoudt/splitcard_cmc
fix cascade for splitcards
This commit is contained in:
commit
8278b1bb2f
2 changed files with 6 additions and 11 deletions
|
|
@ -202,7 +202,7 @@ public class CascadeTest extends CardTestPlayerBase {
|
|||
}
|
||||
|
||||
/**
|
||||
* Cascade dont work with split cards.
|
||||
* Cascade work with split cards, cmc = total of halfs.
|
||||
*
|
||||
* For example: Ardent Plea + Breaking/Entering
|
||||
*/
|
||||
|
|
@ -231,9 +231,9 @@ public class CascadeTest extends CardTestPlayerBase {
|
|||
execute();
|
||||
|
||||
assertPermanentCount(playerA, "Ardent Plea", 1);
|
||||
assertGraveyardCount(playerA, "Breaking // Entering", 1);
|
||||
assertGraveyardCount(playerA, "Breaking // Entering", 0);
|
||||
|
||||
assertGraveyardCount(playerB, 8);
|
||||
assertGraveyardCount(playerB, 0);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue