- Allow for ACS_NamedExecute and friends to be used with SetThingSpecial.
SVN r3389 (trunk)
This commit is contained in:
parent
87f23f6d38
commit
7106c06811
2 changed files with 24 additions and 6 deletions
|
|
@ -260,8 +260,16 @@ void AActor::Serialize (FArchive &arc)
|
|||
<< tracer
|
||||
<< floorclip
|
||||
<< tid
|
||||
<< special
|
||||
<< args[0] << args[1] << args[2] << args[3] << args[4]
|
||||
<< special;
|
||||
if (P_IsACSSpecial(special))
|
||||
{
|
||||
P_SerializeACSScriptNumber(arc, args[0], false);
|
||||
}
|
||||
else
|
||||
{
|
||||
arc << args[0];
|
||||
}
|
||||
arc << args[1] << args[2] << args[3] << args[4]
|
||||
<< goal
|
||||
<< waterlevel
|
||||
<< MinMissileChance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue