From f35eee935cd222dfbfeaf0ad09d380ef5103dccc Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 27 Aug 2017 08:04:18 +0200 Subject: [PATCH] * XMage 1.4.26V2 --- Mage.Sets/src/mage/cards/s/StarfieldOfNyx.java | 6 +++--- .../src/main/java/mage/cards/repository/CardRepository.java | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/StarfieldOfNyx.java b/Mage.Sets/src/mage/cards/s/StarfieldOfNyx.java index ba80466b1c..6a039d3def 100644 --- a/Mage.Sets/src/mage/cards/s/StarfieldOfNyx.java +++ b/Mage.Sets/src/mage/cards/s/StarfieldOfNyx.java @@ -76,7 +76,7 @@ public class StarfieldOfNyx extends CardImpl { } public StarfieldOfNyx(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{4}{W}"); + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{4}{W}"); // At the beginning of your upkeep, you may return target enchantment card from your graveyard to the battlefield. Ability ability = new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, @@ -112,7 +112,7 @@ class StarfieldOfNyxEffect extends ContinuousEffectImpl { public StarfieldOfNyxEffect() { super(Duration.WhileOnBattlefield, Outcome.BecomeCreature); - staticText = "Each other non-Aura enchantment is a creature in addition to its other types and has base power and toughness each equal to its converted mana cost"; + staticText = "Each other non-Aura enchantment you control is a creature in addition to its other types and has base power and toughness each equal to its converted mana cost"; } public StarfieldOfNyxEffect(final StarfieldOfNyxEffect effect) { @@ -162,7 +162,7 @@ class StarfieldOfNyxEffect extends ContinuousEffectImpl { public Set isDependentTo(List allEffectsInLayer) { return allEffectsInLayer .stream() - .filter(effect->effect.getDependencyTypes().contains(DependencyType.AuraAddingRemoving)) + .filter(effect -> effect.getDependencyTypes().contains(DependencyType.AuraAddingRemoving)) .map(Effect::getId) .collect(Collectors.toSet()); diff --git a/Mage/src/main/java/mage/cards/repository/CardRepository.java b/Mage/src/main/java/mage/cards/repository/CardRepository.java index 8f48467e91..7889341d5a 100644 --- a/Mage/src/main/java/mage/cards/repository/CardRepository.java +++ b/Mage/src/main/java/mage/cards/repository/CardRepository.java @@ -58,8 +58,7 @@ public enum CardRepository { // raise this if db structure was changed private static final long CARD_DB_VERSION = 51; // raise this if new cards were added to the server - private static final long CARD_CONTENT_VERSION = 87; - private final TreeSet landTypes = new TreeSet<>(); + private static final long CARD_CONTENT_VERSION = 89; private Dao cardDao; private Set classNames;