Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6623,7 +6623,7 @@ function checkVoidMap() {
if (max < game.global.world){
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think, but am not quite fully certain, that this check will always return false; upon reaching new HZE, the game calls setVoidMaxLevel with game.global.world, so max has to be greater or equal to game.global.world.

setVoidMaxLevel(game.global.world);
if ((getLastPortal() + 25) < game.global.world)
setVoidMaxLevel(getHighestLevelCleared(false, true));
setVoidMaxLevel(getHighestLevelCleared(true, true));
}
if ((max - getLastPortal()) < 25) {
max = getLastPortal();
Expand Down Expand Up @@ -20597,4 +20597,4 @@ function keyTooltip(keyEvent, what, isItIn, event, textString, attachFunction, n

else tooltip(what, isItIn, "screenRead", ...Object.values(arguments).slice(3,))
}
}
}