mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
* Fixed that the dies trigger of Ashen Rider also triggers if Ashen Rider is copied by other creatures (e.g. Volrath the Shapestealer) (fixes #7107).
This commit is contained in:
parent
2daa5aae50
commit
2ce90b1e0a
3 changed files with 77 additions and 1 deletions
|
|
@ -203,7 +203,9 @@ public abstract class TriggeredAbilityImpl extends AbilityImpl implements Trigge
|
|||
}
|
||||
|
||||
/*
|
||||
603.6c,603.6d
|
||||
603.6c Leaves-the-battlefield abilities, 603.6d
|
||||
if true the game “looks back in time” to determine if those abilities trigger,
|
||||
using the existence of those abilities and the appearance of objects immediately prior to the event (603.10)
|
||||
*/
|
||||
@Override
|
||||
public boolean isLeavesTheBattlefieldTrigger() {
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ public class EntersBattlefieldOrDiesSourceTriggeredAbility extends TriggeredAbil
|
|||
|
||||
public EntersBattlefieldOrDiesSourceTriggeredAbility(Effect effect, boolean optional) {
|
||||
super(Zone.BATTLEFIELD, effect, optional);
|
||||
setLeavesTheBattlefieldTrigger(true);
|
||||
}
|
||||
|
||||
public EntersBattlefieldOrDiesSourceTriggeredAbility(final EntersBattlefieldOrDiesSourceTriggeredAbility ability) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue