mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
[ZNR] fixed Grakmaw, Skyclaw Ravager not counting its counters correctly (#7046)
This commit is contained in:
parent
87507a85dc
commit
1893a435b3
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class GrakmawSkyclaveRavagerEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
int counters = 0;
|
||||
Permanent permanent = source.getSourcePermanentOrLKI(game);
|
||||
Permanent permanent = (Permanent) getValue("permanentLeftBattlefield");
|
||||
if (permanent != null) {
|
||||
counters = permanent.getCounters(game).getCount(CounterType.P1P1);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue