mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- fixed typo in GenDudeExtra save check.
This commit is contained in:
parent
771f5e3338
commit
10e6486744
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, DBloodActor& w, DB
|
|||
|
||||
|
||||
// GenDudeExtra only contains valid info for kDudeModernCustom and kDudeModernCustomBurning so only save when needed as these are not small.
|
||||
if (w.s().type == kDudeModernCustom || w.s().time == kDudeModernCustomBurning)
|
||||
if (w.s().type == kDudeModernCustom || w.s().type == kDudeModernCustomBurning)
|
||||
{
|
||||
arc("gendudeextra", w.genDudeExtra);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue