Skip to content

Commit

Permalink
1.3: tweaked some numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
TrashboxBobylev committed Dec 6, 2023
1 parent e942aad commit 387f3fc
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,9 @@ public static Level newLevel() {
}
} else if (branch == 1) {
switch (depth) {
case 9:
case 10:
case 11:
case 12:
case 13:
case 14:
level = new MiningLevel();
break;
default:
Expand Down Expand Up @@ -521,7 +520,7 @@ public static boolean posNeeded() {
public static boolean souNeeded() {
int souLeftThisSet;
//3 SOU each floor set
souLeftThisSet = 3 - (LimitedDrops.UPGRADE_SCROLLS.count - (depth / 5) * 3);
souLeftThisSet = 2 - (LimitedDrops.UPGRADE_SCROLLS.count - (depth / 4) * 2);
if (souLeftThisSet <= 0) return false;

int floorThisSet = (depth % 4);
Expand Down

0 comments on commit 387f3fc

Please sign in to comment.