diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java index e5ed7c965..5f648f16c 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -159,7 +159,7 @@ public abstract class RegularLevel extends Level { //mobs are not randomly spawned on floor 1. return 0; default: - return 2 + Dungeon.depth % 5 + Random.Int(5); + return 3 + Dungeon.depth % 5 + Random.Int(3); } }