This commit is contained in:
Christoph Oelckers 2016-04-17 01:24:41 +02:00
commit 430f3419b0
4 changed files with 24 additions and 7 deletions

View file

@ -548,6 +548,14 @@ void P_SerializePolyobjs (FArchive &arc)
for(i = 0, po = polyobjs; i < po_NumPolyobjs; i++, po++)
{
arc << po->tag << po->Angle << po->StartSpot.pos << po->interpolation;
if (SaveVersion >= 4537)
{
arc << po->bBlocked;
}
else
{
po->bBlocked = false;
}
}
}
else