From 6a67ddaf0a08aad93876550f10baa173f9eb7646 Mon Sep 17 00:00:00 2001 From: Northmoc Date: Tue, 25 Apr 2023 13:40:54 -0400 Subject: [PATCH] add comment --- forge-game/src/main/java/forge/game/card/CardProperty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/card/CardProperty.java b/forge-game/src/main/java/forge/game/card/CardProperty.java index 08244635c41..4ad8b439eb0 100644 --- a/forge-game/src/main/java/forge/game/card/CardProperty.java +++ b/forge-game/src/main/java/forge/game/card/CardProperty.java @@ -1317,7 +1317,7 @@ public class CardProperty { } } else if (property.startsWith("leastToughness")) { CardCollectionView cards = CardLists.filter(game.getCardsIn(ZoneType.Battlefield), Presets.CREATURES); - if (property.contains("ControlledBy")) { + if (property.contains("ControlledBy")) { // 4/25/2023 only used for adventure mode Death Ring FCollectionView p = AbilityUtils.getDefinedPlayers(source, property.split("ControlledBy")[1], spellAbility); cards = CardLists.filterControlledBy(cards, p); if (!cards.contains(card)) {