From 1036b7368e5625d34666beb24163756c1da6b227 Mon Sep 17 00:00:00 2001 From: Marvelco Date: Wed, 11 Mar 2026 05:04:19 +0200 Subject: Fixed DLC map loading / saving, missing chunks (#1114) * fixed all DLC maps * fixed old saves have overlapping chunks with the new system --- Minecraft.World/RegionFileCache.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Minecraft.World/RegionFileCache.cpp') diff --git a/Minecraft.World/RegionFileCache.cpp b/Minecraft.World/RegionFileCache.cpp index ab0492b4..bd6405fa 100644 --- a/Minecraft.World/RegionFileCache.cpp +++ b/Minecraft.World/RegionFileCache.cpp @@ -12,6 +12,11 @@ bool RegionFileCache::useSplitSaves(ESavePlatform platform) case SAVE_FILE_PLATFORM_XBONE: case SAVE_FILE_PLATFORM_PS4: return true; + case SAVE_FILE_PLATFORM_WIN64: + { + LevelGenerationOptions* lgo = app.getLevelGenerationOptions(); + return (lgo != nullptr && lgo->isFromDLC()); + } default: return false; }; -- cgit v1.2.3