From e3a94c8adf050ced88d05f0cb6edcf4894d8d844 Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Wed, 4 Dec 2024 14:23:25 -0600 Subject: [PATCH] Fixed #13106 --- Mage.Sets/src/mage/cards/p/PolJamaarIllusionist.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/p/PolJamaarIllusionist.java b/Mage.Sets/src/mage/cards/p/PolJamaarIllusionist.java index 5a18bb10191..5ea5e16108a 100644 --- a/Mage.Sets/src/mage/cards/p/PolJamaarIllusionist.java +++ b/Mage.Sets/src/mage/cards/p/PolJamaarIllusionist.java @@ -74,7 +74,8 @@ class PolJamaarIllusionistEffect extends OneShotEffect { } 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; }