From 7b699cca6df81869e4ec745bcc185e32456e8bca Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 14 Jan 2015 23:51:47 -0500 Subject: [PATCH] v0.2.3d: fixed armband bug, now properly loses charge when unequipped --- .../items/artifacts/MasterThievesArmband.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/MasterThievesArmband.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/MasterThievesArmband.java index 9595cae97..0cdd3c4f7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/MasterThievesArmband.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/MasterThievesArmband.java @@ -46,7 +46,7 @@ public class MasterThievesArmband extends Artifact { @Override public void detach() { - charge /= 0.80; + charge *= 0.80; super.detach(); }