mirror of
https://github.com/correl/mage.git
synced 2025-03-17 17:00:08 -09:00
removed unnecessary condition
This commit is contained in:
parent
5dbb391a68
commit
ccf42570aa
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class ArchonOfValorsReachReplacementEffect extends ContinuousRuleModifyingEffect
|
|||
|
||||
if (savedType instanceof String && card != null) {
|
||||
CardType cardType = CardType.fromString((String) savedType);
|
||||
if (cardType != null && card != null && card.getCardType().contains(cardType)) {
|
||||
if (cardType != null && card.getCardType().contains(cardType)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue