[ZNR] fixed Grakmaw, Skyclaw Ravager not counting its counters correctly (#7046)

This commit is contained in:
Evan Kranzler 2020-09-16 20:36:26 -04:00
parent 87507a85dc
commit 1893a435b3

View file

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