Saves with RSST and RSSS are now restricted to 98.0

This commit is contained in:
jacob1 2024-03-17 14:32:28 -04:00
parent 228d559ccd
commit aa8ee76fbb
No known key found for this signature in database
GPG Key ID: 4E58A32D510E1995

View File

@ -2336,6 +2336,10 @@ std::pair<bool, std::vector<char>> GameSave::serialiseOPS() const
{
RESTRICTVERSION(97, 0);
}
if (particles[i].type == PT_RSST || particles[i].type == PT_RSSS)
{
RESTRICTVERSION(98, 0);
}
//Get the pmap entry for the next particle in the same position
i = partsPosLink[i];