- added Major Cooke's Death/Paintype submission.
SVN r3237 (trunk)
This commit is contained in:
parent
e4455c293f
commit
4d7fcbf1b8
5 changed files with 41 additions and 5 deletions
|
|
@ -1016,6 +1016,26 @@ DEFINE_PROPERTY(damagetype, S, Actor)
|
|||
else defaults->DamageType=str;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
||||
//==========================================================================
|
||||
DEFINE_PROPERTY(paintype, S, Actor)
|
||||
{
|
||||
PROP_STRING_PARM(str, 0);
|
||||
if (!stricmp(str, "Normal")) defaults->PainType = NAME_None;
|
||||
else defaults->PainType=str;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
||||
//==========================================================================
|
||||
DEFINE_PROPERTY(deathtype, S, Actor)
|
||||
{
|
||||
PROP_STRING_PARM(str, 0);
|
||||
if (!stricmp(str, "Normal")) defaults->DeathType = NAME_None;
|
||||
else defaults->DeathType=str;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
//==========================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue