aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World')
-rw-r--r--Minecraft.World/RegionFileCache.cpp5
1 files changed, 5 insertions, 0 deletions
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;
};