From 6fa7182d7bf95468eb873f7ac4ca7aa711ff122c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 30 Nov 2025 11:18:32 -0500 Subject: [PATCH] v3.3.0: fixed skeleton key upgrades not counting in catalog --- .../shatteredpixeldungeon/items/artifacts/SkeletonKey.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SkeletonKey.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SkeletonKey.java index 670d3775f..2f9407975 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SkeletonKey.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SkeletonKey.java @@ -41,6 +41,7 @@ import com.shatteredpixel.shatteredpixeldungeon.items.keys.GoldenKey; import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey; import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfEnergy; import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfBlastWave; +import com.shatteredpixel.shatteredpixeldungeon.journal.Catalog; import com.shatteredpixel.shatteredpixeldungeon.journal.Notes; import com.shatteredpixel.shatteredpixeldungeon.levels.Level; import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain; @@ -119,6 +120,7 @@ public class SkeletonKey extends Artifact { exp -= 4+level(); upgrade(); GLog.p(Messages.get(this, "levelup")); + Catalog.countUse(SkeletonKey.class); } }