mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
Merge branch 'master' into 'master'
Make Disturb cards show up in Flashback zone. See merge request core-developers/forge!5793
This commit is contained in:
@@ -61,7 +61,8 @@ public class PlayerZone extends Zone {
|
|||||||
}
|
}
|
||||||
|
|
||||||
boolean graveyardCastable = c.hasKeyword(Keyword.FLASHBACK) ||
|
boolean graveyardCastable = c.hasKeyword(Keyword.FLASHBACK) ||
|
||||||
c.hasKeyword(Keyword.RETRACE) || c.hasKeyword(Keyword.JUMP_START) || c.hasKeyword(Keyword.ESCAPE);
|
c.hasKeyword(Keyword.RETRACE) || c.hasKeyword(Keyword.JUMP_START) || c.hasKeyword(Keyword.ESCAPE) ||
|
||||||
|
c.hasKeyword(Keyword.DISTURB);
|
||||||
boolean exileCastable = (c.isAdventureCard() || c.isForetold()) && c.isInZone(ZoneType.Exile);
|
boolean exileCastable = (c.isAdventureCard() || c.isForetold()) && c.isInZone(ZoneType.Exile);
|
||||||
for (final SpellAbility sa : c.getSpellAbilities()) {
|
for (final SpellAbility sa : c.getSpellAbilities()) {
|
||||||
final ZoneType restrictZone = sa.getRestrictions().getZone();
|
final ZoneType restrictZone = sa.getRestrictions().getZone();
|
||||||
|
|||||||
Reference in New Issue
Block a user