From d14cafa190e86fdf46b0e983f68628c2fac9e277 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 8 Oct 2020 20:47:08 -0400 Subject: [PATCH] v0.9.0a: Fixed scrolls spending time before cancelling time freeze --- .../shatteredpixeldungeon/items/scrolls/Scroll.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/Scroll.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/Scroll.java index 970f95720..1381e60af 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/Scroll.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/scrolls/Scroll.java @@ -195,9 +195,9 @@ public abstract class Scroll extends Item { public abstract void doRead(); protected void readAnimation() { + Invisibility.dispel(); curUser.spend( TIME_TO_READ ); curUser.busy(); - Invisibility.dispel(); ((HeroSprite)curUser.sprite).read(); }