Update AbilityImpl.java

This commit is contained in:
Grath 2025-10-21 12:27:38 -04:00 committed by GitHub
parent 2552dcf633
commit 9e475fccd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1715,6 +1715,7 @@ public abstract class AbilityImpl implements Ability {
// So "Enters with counters" causes "Whenever counters are placed" to trigger with battlefield zcc // So "Enters with counters" causes "Whenever counters are placed" to trigger with battlefield zcc
// Particularly relevant for Sagas, which always involve both // Particularly relevant for Sagas, which always involve both
// Note that this does NOT apply to "As ~ ETB" effects, those still use the stack zcc // Note that this does NOT apply to "As ~ ETB" effects, those still use the stack zcc
// TODO: JayDi doesn't like this solution, consider finding another one.
zcc += 1; zcc += 1;
// However, tokens don't change their zcc upon entering the battlefield, so don't add for them // However, tokens don't change their zcc upon entering the battlefield, so don't add for them
} }