Fixed broken portals after loading saved game

Portals disabled initially and activated by scripting must be fully restored after loading of saved game

https://forum.zdoom.org/viewtopic.php?t=59999
This commit is contained in:
alexey.lysiuk 2018-04-15 10:52:23 +03:00 committed by Christoph Oelckers
commit 4ea16acef5
2 changed files with 4 additions and 3 deletions

View file

@ -994,7 +994,7 @@ void G_SerializeLevel(FSerializer &arc, bool hubload)
arc("zones", level.Zones);
arc("lineportals", level.linePortals);
arc("sectorportals", level.sectorPortals);
if (arc.isReading()) P_CollectLinkedPortals();
if (arc.isReading()) P_FinalizePortals();
// [ZZ] serialize events
E_SerializeEvents(arc);