From 1893a435b3d0020e8cbfda5ec52a1a9030c88d44 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 16 Sep 2020 20:36:26 -0400 Subject: [PATCH] [ZNR] fixed Grakmaw, Skyclaw Ravager not counting its counters correctly (#7046) --- Mage.Sets/src/mage/cards/g/GrakmawSkyclaveRavager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/g/GrakmawSkyclaveRavager.java b/Mage.Sets/src/mage/cards/g/GrakmawSkyclaveRavager.java index c89fedde525..d8eac4f9b1b 100644 --- a/Mage.Sets/src/mage/cards/g/GrakmawSkyclaveRavager.java +++ b/Mage.Sets/src/mage/cards/g/GrakmawSkyclaveRavager.java @@ -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); }