diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfTransmutation.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfTransmutation.java index f7fc5062c..c44018cc7 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfTransmutation.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/ScrollOfTransmutation.java @@ -79,9 +79,9 @@ public class ScrollOfTransmutation extends InventoryScroll { } else if (item instanceof Potion){ return !(item instanceof Elixir || item instanceof Brew); - //all regular or exotic scrolls, except itself + //all regular or exotic scrolls, except itself (unless un-ided, in which case it was already consumed) } else if (item instanceof Scroll){ - return item != this || item.quantity() > 1; + return item != this || item.quantity() > 1 || identifiedByUse; //all rings, wands, artifacts, trinkets, seeds, and runestones } else {