mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Alchemist's Gift not pumping or granting an ability (#6646)
This commit is contained in:
parent
b9e93a5da2
commit
28e142a196
1 changed files with 2 additions and 2 deletions
|
@ -66,8 +66,8 @@ class AlchemistsGiftEffect extends OneShotEffect {
|
|||
outcome, "Deathtouch or lifelink?", null,
|
||||
"Deathtouch", "Lifelink", source, game
|
||||
) ? DeathtouchAbility.getInstance() : LifelinkAbility.getInstance();
|
||||
game.addEffect(new BoostSourceEffect(1, 1, Duration.EndOfTurn), ability);
|
||||
game.addEffect(new GainAbilitySourceEffect(ability, Duration.EndOfTurn), ability);
|
||||
game.addEffect(new BoostSourceEffect(1, 1, Duration.EndOfTurn), source);
|
||||
game.addEffect(new GainAbilitySourceEffect(ability, Duration.EndOfTurn), source);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue