[KHM] fixed Ascent of the Worthy chapter 3 and added note to chapters 1 and 2

This commit is contained in:
Evan Kranzler 2021-02-12 09:07:42 -05:00
parent 9485cce9e3
commit c3d55ea12a

View file

@ -95,6 +95,7 @@ class AscentOfTheWorthyEffect extends OneShotEffect {
if (permanent == null) { if (permanent == null) {
return false; return false;
} }
game.informPlayers(player.getName() + " chooses to have all damage redirected to " + permanent.getIdName());
game.addEffect(new AscentOfTheWorthyRedirectEffect(new MageObjectReference(permanent, game)), source); game.addEffect(new AscentOfTheWorthyRedirectEffect(new MageObjectReference(permanent, game)), source);
return false; return false;
} }
@ -161,7 +162,7 @@ class AscentOfTheWorthyReturnEffect extends OneShotEffect {
@Override @Override
public boolean apply(Game game, Ability source) { 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()); Card card = game.getCard(source.getFirstTarget());
if (player == null || card == null) { if (player == null || card == null) {
return false; return false;