Skip to content

Commit 09e796b

Browse files
Updated spawnY to match lowest reasonable spawn coordinate
1 parent 5adbe27 commit 09e796b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

overviewer_core/world.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ def find_true_spawn(self):
198198
disp_spawnZ = spawnZ = data['SpawnZ']
199199

200200
## clamp spawnY to a sane value, in-chunk value
201-
if spawnY < 0:
202-
spawnY = 0
201+
if spawnY < -63:
202+
spawnY = -63
203203
if spawnY > 319:
204204
spawnY = 319
205205

0 commit comments

Comments
 (0)