v1.3.0: fixed Goo's level been counted for exploration bonus

This commit is contained in:
Evan Debenham
2022-06-13 17:39:40 -04:00
parent 9b3170f643
commit 9e4e7cfa2c

View File

@@ -780,7 +780,7 @@ public class Dungeon {
}
public static void updateLevelExplored(){
if (branch == 0 && level instanceof RegularLevel){
if (branch == 0 && level instanceof RegularLevel && !Dungeon.bossLevel()){
Statistics.floorsExplored.put( depth, level.isLevelExplored(depth));
}
}