mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- spReturn needs to call super.canPlay() so sorceries can't be cast as instants
This commit is contained in:
@@ -3710,7 +3710,7 @@ public class CardFactory implements NewConstants {
|
|||||||
@Override
|
@Override
|
||||||
public boolean canPlay() {
|
public boolean canPlay() {
|
||||||
if (returnUpTo[0] || anyNumber[0]) return true;
|
if (returnUpTo[0] || anyNumber[0]) return true;
|
||||||
return getGraveyardList().size() >= numCardsToReturn;
|
return getGraveyardList().size() >= numCardsToReturn && super.canPlay();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user