mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-21 19:51:27 +00:00
Made DamageSource and bIsPuff readonly
This commit is contained in:
parent
f8b68a6927
commit
1392db2f5b
2 changed files with 2 additions and 2 deletions
|
@ -354,7 +354,7 @@ static FFlagDef ActorFlagDefs[]=
|
|||
DEFINE_FLAG(MF9, SHADOWAIMVERT, AActor, flags9),
|
||||
DEFINE_FLAG(MF9, DECOUPLEDANIMATIONS, AActor, flags9),
|
||||
DEFINE_FLAG(MF9, NOSECTORDAMAGE, AActor, flags9),
|
||||
DEFINE_FLAG(MF9, ISPUFF, AActor, flags9), //[AA] was spawned by SpawnPuff
|
||||
DEFINE_PROTECTED_FLAG(MF9, ISPUFF, AActor, flags9), //[AA] was spawned by SpawnPuff
|
||||
|
||||
// Effect flags
|
||||
DEFINE_FLAG(FX, VISIBILITYPULSE, AActor, effects),
|
||||
|
|
|
@ -148,7 +148,7 @@ class Actor : Thinker native
|
|||
native Actor Target;
|
||||
native Actor Master;
|
||||
native Actor Tracer;
|
||||
native Actor DamageSource;
|
||||
native readonly Actor DamageSource;
|
||||
native Actor LastHeard;
|
||||
native Actor LastEnemy;
|
||||
native Actor LastLookActor;
|
||||
|
|
Loading…
Reference in a new issue