- Allow for ACS_NamedExecute and friends to be used with SetThingSpecial.

SVN r3389 (trunk)
This commit is contained in:
Randy Heit 2012-02-26 02:25:33 +00:00
commit 7106c06811
2 changed files with 24 additions and 6 deletions

View file

@ -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