mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Fixed spells cast by AF Play effects (like Isochron Scepter) not triggering cast spell triggers (like storm).
This commit is contained in:
@@ -66,7 +66,9 @@ public class HumanPlaySpellAbility {
|
||||
final Card c = this.ability.getSourceCard();
|
||||
if (this.ability instanceof Spell && !c.isCopiedSpell()) {
|
||||
fromZone = game.getZoneOf(c);
|
||||
zonePosition = fromZone.getCards().indexOf(c);
|
||||
if (fromZone != null) {
|
||||
zonePosition = fromZone.getCards().indexOf(c);
|
||||
}
|
||||
this.ability.setSourceCard(game.getAction().moveToStack(c));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user