Changed RTF_THRUSTZ to match RADF_THRUSTZ's bitmap.

This commit is contained in:
MajorCooke 2016-05-11 07:28:05 -05:00 committed by Christoph Oelckers
parent 952219a018
commit 39f64383cb
2 changed files with 1 additions and 3 deletions

View File

@ -1146,7 +1146,6 @@ enum
RTF_AFFECTSOURCE = 1,
RTF_NOIMPACTDAMAGE = 2,
RTF_NOTMISSILE = 4,
RTF_THRUSTZ = 8,
};
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_RadiusThrust)
@ -1168,7 +1167,6 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_RadiusThrust)
sourcenothrust = true;
self->target->flags2 &= ~MF2_NODMGTHRUST;
}
if (flags & RTF_THRUSTZ) flags |= RADF_THRUSTZ;
P_RadiusAttack (self, self->target, force, distance, self->DamageType, flags | RADF_NODAMAGE, fullthrustdistance);
P_CheckSplash(self, distance);

View File

@ -178,7 +178,7 @@ const int XF_NOTMISSILE = 4;
const int RTF_AFFECTSOURCE = 1;
const int RTF_NOIMPACTDAMAGE = 2;
const int RTF_NOTMISSILE = 4;
const int RTF_THRUSTZ = 8;
const int RTF_THRUSTZ = 16;
// Flags for A_Blast
const int BF_USEAMMO = 1;