- Tweak a comment.

This commit is contained in:
Michael Kamensky
2021-10-25 09:13:42 +03:00
parent 470fe5fba4
commit c70b6d13c1

View File

@@ -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<Card> cardsOTB = Lists.newArrayList(CardLists.filter(
controller.getCardsIn(ZoneType.Battlefield), new Predicate<Card>() {