mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
- fixed FAFhitscan to not pass the hitpos back into hitscan.
This will overwrite the scan's start and cause the function to malfunction.
This commit is contained in:
parent
2991bc752b
commit
babbad83af
1 changed files with 8 additions and 4 deletions
|
@ -177,7 +177,8 @@ void FAFhitscan(const DVector3& start, sectortype* sect, const DVector3& vect, H
|
||||||
ResetWallWarpHitscan(hit.hitSector);
|
ResetWallWarpHitscan(hit.hitSector);
|
||||||
|
|
||||||
// NOTE: This could be recursive I think if need be
|
// NOTE: This could be recursive I think if need be
|
||||||
hitscan(hit.hitpos, hit.hitSector, vect, hit, startclipmask);
|
auto start = hit.hitpos;
|
||||||
|
hitscan(start, hit.hitSector, vect, hit, startclipmask);
|
||||||
|
|
||||||
// reset hitscan block for dest sect
|
// reset hitscan block for dest sect
|
||||||
SetWallWarpHitscan(hit.hitSector);
|
SetWallWarpHitscan(hit.hitSector);
|
||||||
|
@ -203,7 +204,8 @@ void FAFhitscan(const DVector3& start, sectortype* sect, const DVector3& vect, H
|
||||||
sectortype* newsect = nullptr;
|
sectortype* newsect = nullptr;
|
||||||
if (Warp(hit.hitpos, &newsect))
|
if (Warp(hit.hitpos, &newsect))
|
||||||
{
|
{
|
||||||
hitscan(hit.hitpos, newsect, vect, hit, clipmask);
|
auto start = hit.hitpos;
|
||||||
|
hitscan(start, newsect, vect, hit, clipmask);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -212,7 +214,8 @@ void FAFhitscan(const DVector3& start, sectortype* sect, const DVector3& vect, H
|
||||||
sectortype* newsect = nullptr;
|
sectortype* newsect = nullptr;
|
||||||
if (WarpPlane(hit.hitpos, &newsect))
|
if (WarpPlane(hit.hitpos, &newsect))
|
||||||
{
|
{
|
||||||
hitscan(hit.hitpos, newsect, vect, hit, clipmask);
|
auto start = hit.hitpos;
|
||||||
|
hitscan(start, newsect, vect, hit, clipmask);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -240,7 +243,8 @@ void FAFhitscan(const DVector3& start, sectortype* sect, const DVector3& vect, H
|
||||||
|
|
||||||
if (plax_found)
|
if (plax_found)
|
||||||
{
|
{
|
||||||
hitscan(hit.hitpos, newsector, vect, hit, clipmask);
|
auto start = hit.hitpos;
|
||||||
|
hitscan(start, newsector, vect, hit, clipmask);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue