- Duke: Ensure player_struct Serialiser only attempts to set variables when reading, not unconditionally.

This commit is contained in:
Mitchell Richters 2023-09-24 17:21:17 +10:00
parent 22077c5b50
commit ff8cea673e

View file

@ -271,11 +271,14 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, player_struct& w,
("fistsign", w.fistsign)
.EndObject();
w.invdisptime = 0;
w.GetActor()->backuploc();
w.opyoff = w.pyoff;
w.backupweapon();
w.sync.actions &= SB_CENTERVIEW|SB_CROUCH; // these are the only bits we need to preserve.
if (arc.isReading())
{
w.invdisptime = 0;
w.GetActor()->backuploc();
w.opyoff = w.pyoff;
w.backupweapon();
w.sync.actions &= SB_CENTERVIEW|SB_CROUCH; // these are the only bits we need to preserve.
}
}
return arc;
}