mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
don't go through the back side of walls
This commit is contained in:
parent
bcdf710316
commit
46a74c831a
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ MOD_TraceLine (hull_t *hull, int num, const vec3_t start, const vec3_t end,
|
|||
num = node->children[0];
|
||||
continue;
|
||||
}
|
||||
if (front < offset && back < offset) {
|
||||
if (front <= -offset && back <= -offset) {
|
||||
num = node->children[1];
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue