restrict new LSNS features to version 95.0 also

This commit is contained in:
jacob1 2020-02-23 21:56:34 -05:00
parent 82019ef020
commit 89a5162448

View File

@ -2404,6 +2404,13 @@ char * GameSave::serialiseOPS(unsigned int & dataLength)
RESTRICTVERSION(94, 0); RESTRICTVERSION(94, 0);
} }
} }
if (particles[i].type == PT_LSNS)
{
if (particles[i].tmp >= 1 || particles[i].tmp <= 3)
{
RESTRICTVERSION(95, 0);
}
}
//Get the pmap entry for the next particle in the same position //Get the pmap entry for the next particle in the same position
i = partsPosLink[i]; i = partsPosLink[i];