Fix being able to click things through walls sometimes (#6315)

This commit is contained in:
wrexbe
2022-01-30 07:39:59 -08:00
committed by GitHub
parent 462a4dd1cd
commit c7a6d2312f

View File

@@ -345,7 +345,7 @@ namespace Content.Shared.Interaction
var bBox = p.GetWorldAABB();
if (bBox.Contains(origin.Position) || bBox.Contains(other.Position))
if (bBox.Contains(other.Position))
{
continue;
}