From 0e58334df6789230d039400cbd705e2c65f2c282 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 2 Dec 2025 17:01:22 -0500 Subject: [PATCH] v3.3.0: fixed a NTF when using skele key on an iron door with no charge --- .../shatteredpixeldungeon/items/artifacts/SkeletonKey.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 fbf9844ea..1977004bc 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 @@ -149,7 +149,7 @@ public class SkeletonKey extends Artifact { return; } if (charge < 1){ - GLog.i( Messages.get(this, "iron_charge") ); + GLog.i( Messages.get(this, "iron_charges") ); return; } Sample.INSTANCE.play(Assets.Sounds.UNLOCK);