mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed: AActor' friction field was not saved
This commit is contained in:
parent
c569029b1d
commit
1250eb5323
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// Copyright 1993-1996 id Software
|
||||
// Copyright 1994-1996 Raven Software
|
||||
|
@ -533,7 +533,8 @@ void AActor::Serialize(FSerializer &arc)
|
|||
A("renderhidden", RenderHidden)
|
||||
A("renderrequired", RenderRequired)
|
||||
A("friendlyseeblocks", friendlyseeblocks)
|
||||
A("spawntime", SpawnTime);
|
||||
A("spawntime", SpawnTime)
|
||||
A("friction", Friction);
|
||||
}
|
||||
|
||||
#undef A
|
||||
|
|
Loading…
Reference in a new issue