Limit saves with ETRD with .tmp or .tmp2 set to 98.0

This commit is contained in:
jacob1 2024-03-17 16:13:56 -04:00
parent 16f50b808d
commit 7870ec56a3
No known key found for this signature in database
GPG Key ID: 4E58A32D510E1995

View File

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