From 092472bdea0f7553ef119d7b9d4f6b300634fa4b Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 27 Apr 2016 19:54:34 -0400 Subject: [PATCH] v0.3.5: fixed uncloaking taking no time, quick allowed for a 1 turn sneak attack exploit --- .../shatteredpixeldungeon/items/artifacts/CloakOfShadows.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java index 82c3580a8..30b2254f4 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java @@ -98,6 +98,7 @@ public class CloakOfShadows extends Artifact { stealthed = false; activeBuff.detach(); activeBuff = null; + hero.spend( 1f ); hero.sprite.operate( hero.pos ); }