diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java index e852a81e3..beb78c602 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java @@ -509,7 +509,7 @@ public class GameScene extends PixelScene { } if (Dungeon.hero.hasTalent(Talent.ROGUES_FORESIGHT) - && Dungeon.level instanceof RegularLevel){ + && Dungeon.level instanceof RegularLevel && Dungeon.branch == 0){ int reqSecrets = Dungeon.level.feeling == Level.Feeling.SECRETS ? 2 : 1; for (Room r : ((RegularLevel) Dungeon.level).rooms()){ if (r instanceof SecretRoom) reqSecrets--;