mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
fixed old saves have overlapping chunks with the new system
This commit is contained in:
parent
c4a9a765c0
commit
3cd3d86f4e
|
|
@ -11,8 +11,12 @@ bool RegionFileCache::useSplitSaves(ESavePlatform platform)
|
||||||
{
|
{
|
||||||
case SAVE_FILE_PLATFORM_XBONE:
|
case SAVE_FILE_PLATFORM_XBONE:
|
||||||
case SAVE_FILE_PLATFORM_PS4:
|
case SAVE_FILE_PLATFORM_PS4:
|
||||||
case SAVE_FILE_PLATFORM_WIN64:
|
|
||||||
return true;
|
return true;
|
||||||
|
case SAVE_FILE_PLATFORM_WIN64:
|
||||||
|
{
|
||||||
|
LevelGenerationOptions* lgo = app.getLevelGenerationOptions();
|
||||||
|
return (lgo != nullptr && lgo->isFromDLC());
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue