mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 04:22:01 -08:00
Fix saga first chapter zcc (#13710)
* Enable disabled tests * Enable zcc Saga fix * Remove existing zcc hacks
This commit is contained in:
parent
6b7ae89479
commit
19f980c2ce
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