From c70b6d13c1802b5f76bd332cc65cce3c1e06b469 Mon Sep 17 00:00:00 2001 From: Michael Kamensky Date: Mon, 25 Oct 2021 09:13:42 +0300 Subject: [PATCH] - Tweak a comment. --- .../forge/game/ability/effects/FlipOntoBattlefieldEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/effects/FlipOntoBattlefieldEffect.java b/forge-game/src/main/java/forge/game/ability/effects/FlipOntoBattlefieldEffect.java index 98ced261189..8f37045d119 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/FlipOntoBattlefieldEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/FlipOntoBattlefieldEffect.java @@ -98,7 +98,7 @@ public class FlipOntoBattlefieldEffect extends SpellAbilityEffect { } private Card getNeighboringCard(Card c, int direction) { - // Currently gets the nearest (by ID) card to the left or to the right of the designated one by type + // Currently gets the nearest (in zone order) card to the left or to the right of the designated one by type Player controller = c.getController(); ArrayList cardsOTB = Lists.newArrayList(CardLists.filter( controller.getCardsIn(ZoneType.Battlefield), new Predicate() {