PipeRift/SaveExtension

SlotData Map is not saved correctly

Opened this issue · 0 comments

//Save Level info in both files
SlotInfo->Map = FName{ FSlotHelpers::GetWorldName(World) };
SlotData->Map = SlotData->Map;

I think this lines were supposed to be:

//Save Level info in both files
SlotInfo->Map = FName{ FSlotHelpers::GetWorldName(World) };
SlotData->Map = SlotInfo->Map;