mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[KHM] fixed Ascent of the Worthy chapter 3 and added note to chapters 1 and 2
This commit is contained in:
parent
9485cce9e3
commit
c3d55ea12a
1 changed files with 2 additions and 1 deletions
|
@ -95,6 +95,7 @@ class AscentOfTheWorthyEffect extends OneShotEffect {
|
|||
if (permanent == null) {
|
||||
return false;
|
||||
}
|
||||
game.informPlayers(player.getName() + " chooses to have all damage redirected to " + permanent.getIdName());
|
||||
game.addEffect(new AscentOfTheWorthyRedirectEffect(new MageObjectReference(permanent, game)), source);
|
||||
return false;
|
||||
}
|
||||
|
@ -161,7 +162,7 @@ class AscentOfTheWorthyReturnEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getSourceId());
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Card card = game.getCard(source.getFirstTarget());
|
||||
if (player == null || card == null) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue