mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 15:00:46 +00:00
- Duke: Ensure player_struct
Serialiser only attempts to set variables when reading, not unconditionally.
This commit is contained in:
parent
22077c5b50
commit
ff8cea673e
1 changed files with 8 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue