From 9feafc46c7adea0f9bf25092ed773e1d8394abd2 Mon Sep 17 00:00:00 2001 From: Holly Date: Mon, 4 Sep 2023 02:05:14 +0100 Subject: [PATCH] allow server to read chunks from disk again (oops) --- server/World.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/World.ts b/server/World.ts index 5c550e3..9747e59 100644 --- a/server/World.ts +++ b/server/World.ts @@ -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;