From e7dbe79c154f566e9f5fc641c03b7981b94d15b2 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 7 Oct 2024 15:22:44 -0400 Subject: [PATCH] v2.5.4: fixed 2x unided SOTrans not being usable on its own stack --- .../items/scrolls/ScrollOfTransmutation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {