From 84934759575254a63d5747f9f942abdf7729efab Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 10 Aug 2021 20:34:07 -0400 Subject: [PATCH] v0.9.4: fixed guidebook pages not being set to read in some cases --- .../com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java index 4670b201c..53b07abe9 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/StatusPane.java @@ -380,6 +380,7 @@ public class StatusPane extends Component { GameScene.show( new WndStory( WndJournal.GuideTab.iconForPage(flashingPage), Document.ADVENTURERS_GUIDE.pageTitle(flashingPage), Document.ADVENTURERS_GUIDE.pageBody(flashingPage) )); + Document.ADVENTURERS_GUIDE.readPage(flashingPage); } else { GameScene.show( new WndJournal() ); }