From 73deae88ce9dd833366cb02a683ed175049c850c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 4 Nov 2022 13:23:01 +0100 Subject: [PATCH] - fixed neartag's trace vector maintenance for sprite hits. The trace vector needs to be shortened so that further checks only find items in front of the sprite. --- source/core/gamefuncs.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index 5e44ba50b..216fbd610 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -1155,10 +1155,11 @@ void neartag(const DVector3& pos, sectortype* startsect, DAngle angle, HitInfoBa { factor = newfactor; result.hitActor = actor; + v = spot - pos; // return distance to sprite in a separate variable because there is - // no means to determine what is for if both a sprite and wall are found. + // no means to determine what it is for if both a sprite and wall are found. // Only SW's NearTagList actually uses it. - result.hitpos.Y = (spot - pos).XY().Length(); + result.hitpos.Y = v.XY().Length(); } } }