Missed one lil' spot.

This commit is contained in:
Mari the Deer 2020-06-13 21:39:59 +02:00
commit 3b55ed38c2
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
[default]
SWWM_MODVER="\cxSWWM GZ\c- r339 (Sat 13 Jun 21:34:28 CEST 2020)";
SWWM_MODVER="\cxSWWM GZ\c- r340 (Sat 13 Jun 21:39:59 CEST 2020)";

View file

@ -640,7 +640,7 @@ Class Wallbuster : SWWMWeapon
else t.HitList[i].HitActor.A_StartSound("spreadgun/pelletf",CHAN_FOOTSTEP,CHANF_OVERLAP,.4,4.);
}
}
if ( (t.Results.HitType != TRACE_HitNone) && (t.Results.HitType != TRACE_HasHitSky) )
if ( (t.Results.HitType != TRACE_HitNone) && (t.Results.HitType != TRACE_HasHitSky) && (t.Results.HitType != TRACE_HitActor) )
{
Vector3 hitnormal = -t.Results.HitVector;
if ( t.Results.HitType == TRACE_HitFloor )