From d467032baa9e12006ff2368e32eb1ea8400e7f99 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 1 Dec 2021 20:32:38 -0500 Subject: [PATCH] v1.1.0: fixed metamorphosis selection window not showing changed talents --- .../items/scrolls/exotic/ScrollOfMetamorphosis.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a22aac05c..6181cdc5a 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 @@ -122,7 +122,7 @@ public class ScrollOfMetamorphosis extends ExoticScroll { top = text.bottom() + 2; ArrayList> talents = new ArrayList<>(); - Talent.initClassTalents(Dungeon.hero.heroClass, talents); + Talent.initClassTalents(Dungeon.hero.heroClass, talents, Dungeon.hero.metamorphedTalents); TalentsPane p = new TalentsPane(TalentButton.Mode.METAMORPH_CHOOSE, talents); add(p); p.setPos(0, top);