From 16d30a0d6153755372a79a4eb7f22cbbd326e55e Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 22 Apr 2025 11:42:50 -0400 Subject: [PATCH] v3.1.0: fixed taking the mick including temporary pickaxe levels --- .../java/com/shatteredpixel/shatteredpixeldungeon/Badges.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java index 0471c3340..563380942 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java @@ -1041,7 +1041,7 @@ public class Badges { if (!DeviceCompat.isDebug()) return; if (cause == Dungeon.hero && Dungeon.hero.belongings.attackingWeapon() instanceof Pickaxe - && Dungeon.hero.belongings.attackingWeapon().buffedLvl() >= 20){ + && Dungeon.hero.belongings.attackingWeapon().level() >= 20){ local.add( Badge.TAKING_THE_MICK ); displayBadge(Badge.TAKING_THE_MICK); }