diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/exotic/ScrollOfMetamorphosis.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/exotic/ScrollOfMetamorphosis.java index 9d6667ffd..9efc97446 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/exotic/ScrollOfMetamorphosis.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/exotic/ScrollOfMetamorphosis.java @@ -211,6 +211,10 @@ public class ScrollOfMetamorphosis extends ExoticScroll { Set curTalentsAtTier = Dungeon.hero.talents.get(tier-1).keySet(); for (HeroClass cls : HeroClass.values()){ + if (cls == HeroClass.CLERIC && Dungeon.hero.heroClass != HeroClass.CLERIC){ + continue; //TODO CLERIC for now no metamorphing cleric talents + } + ArrayList> clsTalents = new ArrayList<>(); Talent.initClassTalents(cls, clsTalents);