mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
Fix saga first chapter zcc (#13710)
* Enable disabled tests
* Enable zcc Saga fix
* Remove existing zcc hacks
(cherry picked from commit 19f980c2ce)
This commit is contained in:
parent
c0256da7de
commit
4683e5c05a
13 changed files with 15 additions and 74 deletions
|
|
@ -1707,15 +1707,14 @@ public abstract class AbilityImpl implements Ability {
|
|||
|
||||
private int getCurrentSourceObjectZoneChangeCounter(Game game){
|
||||
int zcc = game.getState().getZoneChangeCounter(getSourceId());
|
||||
// TODO: Enable this, #13710
|
||||
/*if (game.getPermanentEntering(getSourceId()) != null){
|
||||
if (game.getPermanentEntering(getSourceId()) != null){
|
||||
// If the triggered ability triggered while the permanent is entering the battlefield
|
||||
// then add 1 zcc so that it triggers as if the permanent was already on the battlefield
|
||||
// So "Enters with counters" causes "Whenever counters are placed" to trigger with battlefield zcc
|
||||
// Particularly relevant for Sagas, which always involve both
|
||||
// Note that this does NOT apply to "As ~ ETB" effects, those still use the stack zcc
|
||||
zcc += 1;
|
||||
}*/
|
||||
}
|
||||
return zcc;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue