Skip to content

Commit

Permalink
Fix: Consider Y=64 part of Magma Fields (#2029)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunaynx authored Jun 8, 2024
1 parent 853464d commit 5c65321
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ object CrystalHollowsWalls {

private const val EXPAND_TIMES = 20

private const val HEAT_HEIGHT = 64.0
// Heat is active at Y=64.0 and below as of SkyBlock 0.20.1. We draw the line
// one above to accurately show whether the player is inside the Magma Fields.
private const val HEAT_HEIGHT = 65.0
private const val MAX_HEIGHT = 190.0

private const val MIN_X = 0.0
Expand Down

0 comments on commit 5c65321

Please sign in to comment.