mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Fixed a bug with Echoing Truth and face down creatures.
- Fixed the (annoying) "Pay Mana: " bug of Chandra Nalaar. - Fixed a bug with Guardian of Cloverdell sacrificing kithkin it does not have.
This commit is contained in:
@@ -8798,6 +8798,13 @@ public class CardFactory implements NewConstants {
|
||||
all.addAll(AllZone.Computer_Play.getCards());
|
||||
|
||||
CardList sameName = all.getName(getTargetCard().getName());
|
||||
sameName = sameName.filter(new CardListFilter()
|
||||
{
|
||||
public boolean addCard(Card c)
|
||||
{
|
||||
return !c.isFaceDown();
|
||||
}
|
||||
});
|
||||
|
||||
if(!getTargetCard().isFaceDown()) {
|
||||
//bounce all permanents with the same name
|
||||
|
||||
Reference in New Issue
Block a user