- added PROP_BUDDHA option to SetPlayerProperty.

SVN r2127 (trunk)
This commit is contained in:
Christoph Oelckers 2010-01-24 08:41:40 +00:00
parent e190109c03
commit c363f169d7
1 changed files with 4 additions and 0 deletions

View File

@ -2513,6 +2513,7 @@ enum
PROP_UNUSED1,
PROP_UNUSED2,
PROP_SPEED,
PROP_BUDDHA,
};
FUNC(LS_SetPlayerProperty)
@ -2629,6 +2630,9 @@ FUNC(LS_SetPlayerProperty)
// Set or clear a flag
switch (arg2)
{
case PROP_BUDDHA:
mask = CF_BUDDHA;
break;
case PROP_FROZEN:
mask = CF_FROZEN;
break;