mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[40K] Fix AndTheyShallKnowNoFear
This commit is contained in:
parent
5e891f50c0
commit
c03d6a1cf3
2 changed files with 4 additions and 4 deletions
|
@ -72,7 +72,7 @@ class AndTheyShallKnowNoFearEffect extends OneShotEffect {
|
|||
}
|
||||
Choice choice = new ChoiceCreatureType(sourceObject);
|
||||
player.choose(outcome, choice, game);
|
||||
SubType subType = SubType.fromString(choice.getChoice());
|
||||
SubType subType = SubType.byDescription(choice.getChoice());
|
||||
if (subType == null) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -422,9 +422,9 @@ public final class DominariaUnited extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Tori D'Avenant, Fury Rider", 363, Rarity.UNCOMMON, mage.cards.t.ToriDAvenantFuryRider.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Toxic Abomination", 112, Rarity.COMMON, mage.cards.t.ToxicAbomination.class));
|
||||
cards.add(new SetCardInfo("Tribute to Urborg", 113, Rarity.COMMON, mage.cards.t.TributeToUrborg.class));
|
||||
cards.add(new SetCardInfo("Tura Kennerud, Skyknight", 224, Rarity.COMMON, mage.cards.t.TuraKennerudSkyknight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tura Kennerud, Skyknight", 323, Rarity.COMMON, mage.cards.t.TuraKennerudSkyknight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tura Kennerud, Skyknight", 364, Rarity.COMMON, mage.cards.t.TuraKennerudSkyknight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tura Kennerud, Skyknight", 224, Rarity.UNCOMMON, mage.cards.t.TuraKennerudSkyknight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tura Kennerud, Skyknight", 323, Rarity.UNCOMMON, mage.cards.t.TuraKennerudSkyknight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tura Kennerud, Skyknight", 364, Rarity.UNCOMMON, mage.cards.t.TuraKennerudSkyknight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Twinferno", 149, Rarity.UNCOMMON, mage.cards.t.Twinferno.class));
|
||||
cards.add(new SetCardInfo("Tyrannical Pitlord", 284, Rarity.RARE, mage.cards.t.TyrannicalPitlord.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tyrannical Pitlord", 425, Rarity.RARE, mage.cards.t.TyrannicalPitlord.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
Loading…
Reference in a new issue