From 3df3891563a7cc6686cb5242feba6762e31888bc Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Fri, 8 Oct 2021 00:56:11 -0600 Subject: [PATCH] bspfile: fix hexen2 hull sizes --- common/bspfile.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/bspfile.cc b/common/bspfile.cc index c0b865a2..4596b371 100644 --- a/common/bspfile.cc +++ b/common/bspfile.cc @@ -386,9 +386,9 @@ struct gamedef_h2_t : public gamedef_q1_like_t const std::initializer_list &get_hull_sizes() const { static std::initializer_list hulls = {{{0, 0, 0}, {0, 0, 0}}, {{-16, -16, -32}, {16, 16, 24}}, - {{-24, -24, -20}, {24, 24, 20}}, {{-16, -16, -12}, {16, 16, 16}}, + {{-24, -24, -20}, {24, 24, 20}}, {{-16, -16, -16}, {16, 16, 12}}, {{-8, -8, -8}, {8, 8, 8}}, // {{-40, -40, -42}, {40, 40, 42}} = original game - {{-48, -48, -50}, {48, 48, 50}}}; + {{-28, -28, -40}, {28, 28, 40}}}; return hulls; }