Revert "Fix saga first chapter zcc (#13710)"

This reverts commit 19f980c2ce.
This commit is contained in:
Oleg Agafonov 2025-07-07 09:51:14 +04:00 committed by GitHub
parent 19f980c2ce
commit e49063228d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 74 additions and 15 deletions

View file

@ -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;
}