mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-16 17:13:51 +00:00
Fixed DLC map loading / saving, missing chunks (#1114)
* fixed all DLC maps * fixed old saves have overlapping chunks with the new system
This commit is contained in:
parent
a195ac7172
commit
1036b7368e
4 changed files with 85 additions and 2 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue