mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
- Fixed: Skip_Super didn't clear the current state label list.
SVN r708 (trunk)
This commit is contained in:
parent
25e0f0644a
commit
f9c78a1b80
2 changed files with 4 additions and 0 deletions
|
@ -3,6 +3,9 @@ January 15, 2008
|
||||||
- Spawned actors that have MF2_DORMANT set in their default instance now have
|
- Spawned actors that have MF2_DORMANT set in their default instance now have
|
||||||
Deactivate() called on them immediately after spawning.
|
Deactivate() called on them immediately after spawning.
|
||||||
|
|
||||||
|
January 15, 2008 (Changes by Graf Zahl)
|
||||||
|
- Fixed: Skip_Super didn't clear the current state label list.
|
||||||
|
|
||||||
January 14, 2008
|
January 14, 2008
|
||||||
- Fixed: ACS translations were loaded into the wrong slot after restoring a
|
- Fixed: ACS translations were loaded into the wrong slot after restoring a
|
||||||
savegame.
|
savegame.
|
||||||
|
|
|
@ -732,6 +732,7 @@ static void ActorSkipSuper (AActor *defaults, Baggage &bag)
|
||||||
FreeDropItemChain (bag.DropItemList);
|
FreeDropItemChain (bag.DropItemList);
|
||||||
}
|
}
|
||||||
ResetBaggage (&bag);
|
ResetBaggage (&bag);
|
||||||
|
MakeStateDefines(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
Loading…
Reference in a new issue