mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- fixed copy/paste error in A_UnsetReflectiveInvulnerable.
This commit is contained in:
parent
479b216c06
commit
5adb2fe690
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class Actor : Thinker native
|
|||
void A_SetReflective() { bReflective = true; }
|
||||
void A_UnSetReflective() { bReflective = false; }
|
||||
void A_SetReflectiveInvulnerable() { bInvulnerable = true; bReflective = true; }
|
||||
void A_UnSetReflectiveInvulnerable() { bInvulnerable = true; bReflective = false; }
|
||||
void A_UnSetReflectiveInvulnerable() { bInvulnerable = false; bReflective = false; }
|
||||
void A_SetShootable() { bShootable = true; bNonShootable = false; }
|
||||
void A_UnSetShootable() { bShootable = false; bNonShootable = true; }
|
||||
void A_NoGravity() { bNoGravity = true; }
|
||||
|
|
Loading…
Reference in a new issue