Skip to content

Commit

Permalink
Fixed #13106
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwadsworth committed Dec 4, 2024
1 parent 5df9127 commit e3a94c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Mage.Sets/src/mage/cards/p/PolJamaarIllusionist.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public boolean apply(Game game, Ability source) {
}
ChoiceCreatureType choice = new ChoiceCreatureType(game, source);
player.choose(outcome, choice, game);
SubType subType = SubType.byDescription(choice.getChoice());
// must use choice.getChoiceKey() so that actual subtype is used
SubType subType = SubType.byDescription(choice.getChoiceKey());
if (subType == null) {
return false;
}
Expand Down

0 comments on commit e3a94c8

Please sign in to comment.