mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
correctly report the location of the hit entity
This commit is contained in:
parent
8aa08dec28
commit
fa63d28acf
1 changed files with 3 additions and 1 deletions
|
@ -123,8 +123,10 @@ RecursiveFillOutside (node_t *l, qboolean fill)
|
|||
if (l->valid == valid)
|
||||
return false;
|
||||
|
||||
if (l->occupied)
|
||||
if (l->occupied) {
|
||||
hit_occupied = l->occupied;
|
||||
return true;
|
||||
}
|
||||
|
||||
l->valid = valid;
|
||||
|
||||
|
|
Loading…
Reference in a new issue