mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fixed Urza's Ajani ability targetting issue
This commit is contained in:
parent
a48ed51373
commit
870bc189a3
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ class UrzaAcademyHeadmasterRandomEffect extends OneShotEffect {
|
|||
game.informPlayers(sb.toString());
|
||||
if (target != null) {
|
||||
if (target.canChoose(source.getSourceId(), controller.getId(), game) && controller.canRespond()) {
|
||||
controller.chooseTarget(outcome, target, source, game);
|
||||
target.chooseTarget(outcome, controller.getId(), source, game);
|
||||
} else {
|
||||
// 1/19/2018 (...) If the ability that comes up requires a target and there are no legal targets available, click again until that’s not true.
|
||||
game.informPlayers("[URZA] Target can't be chosen, picking next ability...");
|
||||
|
|
Loading…
Reference in a new issue