mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58: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
|
||||
public boolean canPlay() {
|
||||
if (returnUpTo[0] || anyNumber[0]) return true;
|
||||
return getGraveyardList().size() >= numCardsToReturn;
|
||||
return getGraveyardList().size() >= numCardsToReturn && super.canPlay();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user