Fixed FireRoom
This commit is contained in:
parent
1b13a21373
commit
0603b72711
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user