- fixed copy/paste error in A_UnsetReflectiveInvulnerable.

This commit is contained in:
Christoph Oelckers 2016-11-12 13:11:32 +01:00
parent 479b216c06
commit 5adb2fe690

View file

@ -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; }