diff --git a/Mage/src/main/java/mage/abilities/dynamicvalue/common/GreatestToughnessAmongControlledCreaturesValue.java b/Mage/src/main/java/mage/abilities/dynamicvalue/common/GreatestToughnessAmongControlledCreaturesValue.java index 4ec730c0f08..edc372293ac 100644 --- a/Mage/src/main/java/mage/abilities/dynamicvalue/common/GreatestToughnessAmongControlledCreaturesValue.java +++ b/Mage/src/main/java/mage/abilities/dynamicvalue/common/GreatestToughnessAmongControlledCreaturesValue.java @@ -29,7 +29,7 @@ public enum GreatestToughnessAmongControlledCreaturesValue implements DynamicVal public int calculate(Game game, Ability sourceAbility, Effect effect) { return game .getBattlefield() - .getActivePermanents(filter, sourceAbility.getControllerId(), game) + .getActivePermanents(filter, sourceAbility.getControllerId(), sourceAbility, game) .stream() .map(MageObject::getToughness) .mapToInt(MageInt::getValue)