From c834185fbb7261ad146939e2cb62e481a1947b4d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 27 Jul 2001 02:45:01 +0000 Subject: [PATCH] forgot to clear pe->hull if rotated_bbox is non-existant or 0 --- qw/source/sv_user.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qw/source/sv_user.c b/qw/source/sv_user.c index aff654ccc..2571fa3c3 100644 --- a/qw/source/sv_user.c +++ b/qw/source/sv_user.c @@ -1320,6 +1320,8 @@ AddLinksToPmove (areanode_t *node) int h = SVFIELD (check, rotated_bbox, integer); extern hull_t pf_hull_list[]; pe->hull = &pf_hull_list[h - 1]; + } else { + pe->hull = 0; } } }