update canBeOathbreaker check (#8556)

This commit is contained in:
kevlahnota
2025-08-27 05:22:00 +08:00
committed by GitHub
parent d04c541578
commit 079e6f04ac

View File

@@ -373,6 +373,9 @@ public final class CardRules implements ICardCharacteristics {
public boolean canBeOathbreaker() {
CardType type = mainPart.getType();
if (mainPart.getOracleText().contains("can be your commander")) {
return true;
}
return type.isPlaneswalker();
}