1
0
Fork 0
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:
MusaBrt 2020-11-18 01:34:43 +03:00 committed by GitHub
parent 5dbb391a68
commit ccf42570aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}