mirror of
https://github.com/correl/mage.git
synced 2025-03-16 17:00:13 -09:00
replace the name of the card with {this} for effect text
This commit is contained in:
parent
096f2c0e51
commit
0fe65e99fa
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class BroodOfCockroachesEffect extends OneShotEffect {
|
||||||
game.addDelayedTriggeredAbility(delayedLifeLost, source);
|
game.addDelayedTriggeredAbility(delayedLifeLost, source);
|
||||||
|
|
||||||
Effect effect = new ReturnToHandTargetEffect();
|
Effect effect = new ReturnToHandTargetEffect();
|
||||||
effect.setText("return Brood of Cockroaches to your hand.");
|
effect.setText("return {this} to your hand.");
|
||||||
effect.setTargetPointer(new FixedTarget(source.getSourceId(), source.getSourceObjectZoneChangeCounter()));
|
effect.setTargetPointer(new FixedTarget(source.getSourceId(), source.getSourceObjectZoneChangeCounter()));
|
||||||
DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect);
|
DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect);
|
||||||
game.addDelayedTriggeredAbility(delayedAbility, source);
|
game.addDelayedTriggeredAbility(delayedAbility, source);
|
||||||
|
|
Loading…
Add table
Reference in a new issue