allow server to read chunks from disk again (oops)

This commit is contained in:
Holly Stubbs 2023-09-04 02:05:14 +01:00
parent 479cc35d89
commit 9feafc46c7
Signed by: tgpholly
GPG Key ID: B8583C4B7D18119E
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import { IQueuedUpdate } from "./queuedUpdateTypes/IQueuedUpdate";
export class World {
public static ENTITY_MAX_SEND_DISTANCE = 50;
private static READ_CHUNKS_FROM_DISK = false;
private static READ_CHUNKS_FROM_DISK = true;
private readonly saveManager;
private readonly chunksOnDisk:Array<number>;