restrict saves using newer features of elements

This commit is contained in:
jacob1 2016-07-26 19:33:04 -04:00
parent 647ad902fa
commit 59ac872d5f

View File

@ -2115,6 +2115,15 @@ char * GameSave::serialiseOPS(unsigned int & dataLength)
partsData[fieldDescLoc] = fieldDesc;
partsData[fieldDescLoc+1] = fieldDesc>>8;
if (particles[i].type == PT_RPEL && particles[i].ctype)
{
RESTRICTVERSION(91, 4);
}
else if (particles[i].type == PT_NWHL && particles[i].tmp)
{
RESTRICTVERSION(91, 5);
}
//Get the pmap entry for the next particle in the same position
i = partsPosLink[i];
}