From 0fdd167ba295fd334694ed2c9112246fe42e94ba Mon Sep 17 00:00:00 2001 From: theelk801 Date: Thu, 1 May 2025 18:16:50 -0400 Subject: [PATCH] [TDC] fix Arbor Adherent counting its own toughness --- .../common/GreatestToughnessAmongControlledCreaturesValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)