From 59e3a3fd9bea56556c91b42d39574ead06267cf5 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 17 Dec 2025 11:28:05 -0500 Subject: [PATCH] v3.3.2: fixed a NTR (AGAIN) when using skele key on 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 ddd8b2b63..ad01a24ca 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 @@ -150,7 +150,7 @@ public class SkeletonKey extends Artifact { return; } if (charge < 1){ - GLog.i( Messages.get(this, "iron_charges") ); + GLog.i( Messages.get(SkeletonKey.class, "iron_charges") ); return; } Sample.INSTANCE.play(Assets.Sounds.UNLOCK);