mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Fixed some changeling issues with the third ability of Sarkhan the Mad.
This commit is contained in:
@@ -3107,7 +3107,7 @@ class CardFactory_Planeswalkers {
|
||||
CardList dragons = new CardList(play.getCards());
|
||||
dragons = dragons.filter(new CardListFilter() {
|
||||
public boolean addCard(Card c) {
|
||||
return c.getType().contains("Dragon");
|
||||
return c.isType("Dragon");
|
||||
}
|
||||
});
|
||||
for(int i = 0; i < dragons.size(); i++) {
|
||||
@@ -3125,7 +3125,7 @@ class CardFactory_Planeswalkers {
|
||||
CardList dragons = new CardList(play.getCards());
|
||||
dragons = dragons.filter(new CardListFilter() {
|
||||
public boolean addCard(Card c) {
|
||||
return c.getType().contains("Dragon");
|
||||
return c.isType("Dragon");
|
||||
}
|
||||
});
|
||||
return card2.getCounters(Counters.LOYALTY) >= 4 && dragons.size() >= 1;
|
||||
|
||||
Reference in New Issue
Block a user