Restrict tmp2 != 0 CONV to 97.0

See 0e361c170c.
This commit is contained in:
Tamás Bálint Misius 2022-12-08 07:57:34 +01:00
parent 1af85b0f56
commit b57db7991a
No known key found for this signature in database
GPG Key ID: 5B472A12F6ECA9F2

View File

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