From 9f7b7654a418081cf20f365e0d94434cec0bc4bd Mon Sep 17 00:00:00 2001 From: theelk801 Date: Mon, 13 May 2024 13:49:36 -0400 Subject: [PATCH] fix verify failure --- Mage.Sets/src/mage/sets/JurassicWorldCollection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/JurassicWorldCollection.java b/Mage.Sets/src/mage/sets/JurassicWorldCollection.java index 4441837c89d..899e568fce2 100644 --- a/Mage.Sets/src/mage/sets/JurassicWorldCollection.java +++ b/Mage.Sets/src/mage/sets/JurassicWorldCollection.java @@ -22,8 +22,8 @@ public final class JurassicWorldCollection extends ExpansionSet { cards.add(new SetCardInfo("Blue, Loyal Raptor", 33, Rarity.RARE, mage.cards.b.BlueLoyalRaptor.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Blue, Loyal Raptor", 8, Rarity.RARE, mage.cards.b.BlueLoyalRaptor.class, NON_FULL_USE_VARIOUS)); - cards.add(new SetCardInfo("Command Tower", 26, Rarity.COMMON, mage.cards.c.CommandTower.class)); - cards.add(new SetCardInfo("Command Tower", 26, Rarity.COMMON, mage.cards.c.CommandTower.class)); + cards.add(new SetCardInfo("Command Tower", 26, Rarity.COMMON, mage.cards.c.CommandTower.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Command Tower", "26b", Rarity.COMMON, mage.cards.c.CommandTower.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Compy Swarm", 34, Rarity.RARE, mage.cards.c.CompySwarm.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Compy Swarm", 9, Rarity.RARE, mage.cards.c.CompySwarm.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Cresting Mosasaurus", 2, Rarity.RARE, mage.cards.c.CrestingMosasaurus.class, NON_FULL_USE_VARIOUS));