From fa63d28acf448a99720ca1b9f969610fcc60edd7 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 19 Sep 2002 22:48:30 +0000 Subject: [PATCH] correctly report the location of the hit entity --- tools/qfbsp/source/outside.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/qfbsp/source/outside.c b/tools/qfbsp/source/outside.c index e5ad4fbfb..67d4f5fb8 100644 --- a/tools/qfbsp/source/outside.c +++ b/tools/qfbsp/source/outside.c @@ -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;