mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Fix Tormod, the Desecrator not triggering from Gravecrawler (#4585)
This commit is contained in:
@@ -79,7 +79,7 @@ public class AbilityUtils {
|
||||
cards.add(hostCard);
|
||||
defined = defined.replace("AndSelf", "");
|
||||
}
|
||||
|
||||
|
||||
if (defined.equals("Self")) {
|
||||
c = hostCard;
|
||||
} else if (defined.equals("CorrectedSelf")) {
|
||||
|
||||
@@ -1101,7 +1101,7 @@ public class PhaseHandler implements java.io.Serializable {
|
||||
// Need to check if Zone did change
|
||||
if (currentZone != null && originZone != null && !currentZone.equals(originZone) && (sa.isSpell() || sa instanceof LandAbility)) {
|
||||
// currently there can be only one Spell put on the Stack at once, or Land Abilities be played
|
||||
final CardZoneTable triggerList = new CardZoneTable();
|
||||
final CardZoneTable triggerList = new CardZoneTable(game.getLastStateBattlefield(), game.getLastStateGraveyard());
|
||||
triggerList.put(originZone.getZoneType(), currentZone.getZoneType(), saHost);
|
||||
triggerList.triggerChangesZoneAll(game, sa);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user