This commit is contained in:
Christoph Oelckers 2016-04-18 15:29:45 +02:00
commit 990f5a79b4
4 changed files with 16 additions and 4 deletions

View file

@ -1582,6 +1582,13 @@ void G_SerializeLevel (FArchive &arc, bool hubLoad)
P_SerializeSounds (arc);
if (arc.IsLoading())
{
FThinkerIterator it(RUNTIME_CLASS(DThinker));
DThinker *th;
while ((th = it.Next()))
{
th->PostSerialize();
}
for (i = 0; i < numsectors; i++)
{
P_Recalculate3DFloors(&sectors[i]);