mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- added PROP_BUDDHA option to SetPlayerProperty.
SVN r2127 (trunk)
This commit is contained in:
parent
e190109c03
commit
c363f169d7
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue