mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Revert "Fix saga first chapter zcc (#13710)"
This reverts commit 19f980c2ce.
This commit is contained in:
parent
19f980c2ce
commit
e49063228d
13 changed files with 74 additions and 15 deletions
|
|
@ -1707,14 +1707,15 @@ public abstract class AbilityImpl implements Ability {
|
|||
|
||||
private int getCurrentSourceObjectZoneChangeCounter(Game game){
|
||||
int zcc = game.getState().getZoneChangeCounter(getSourceId());
|
||||
if (game.getPermanentEntering(getSourceId()) != null){
|
||||
// TODO: Enable this, #13710
|
||||
/*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