Fixed FireRoom

This commit is contained in:
LingASDJ 2023-04-17 02:07:09 +08:00
parent 1b13a21373
commit 0603b72711
2 changed files with 5 additions and 1 deletions

View File

@ -533,6 +533,10 @@ public class Dungeon {
return depth == 9 || depth == 18;
}
public static boolean FireLevel() {
return depth == 7 || depth == 9;
}
public static boolean NyzshopOnLevel() {
return depth == 12;
}

View File

@ -237,7 +237,7 @@ public abstract class RegularLevel extends Level {
initRooms.add(new NxhyShopRoom());
}
if(Dungeon.depth>=6 && Dungeon.depth <= 9){
if(Dungeon.FireLevel()){
initRooms.add(new LanFireRoom());
}