From 369e84ccbf5aff4adb3fa9ed643bd5f879e95e1f Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Sun, 25 Jun 2023 08:48:03 +1000 Subject: [PATCH] Remove legacy Quake bbox expansion: DOM --- qcsrc/common/gamemodes/gamemode/domination/sv_domination.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/gamemodes/gamemode/domination/sv_domination.qc b/qcsrc/common/gamemodes/gamemode/domination/sv_domination.qc index a82be5a3c..3c270b3ad 100644 --- a/qcsrc/common/gamemodes/gamemode/domination/sv_domination.qc +++ b/qcsrc/common/gamemodes/gamemode/domination/sv_domination.qc @@ -297,7 +297,7 @@ void dom_controlpoint_setup(entity this) if(!this.flags & FL_ITEM) IL_PUSH(g_items, this); this.flags = FL_ITEM; - setsize(this, '-32 -32 -32', '32 32 32'); + setsize(this, '-48 -48 -32', '48 48 32'); // 0.8.6 used '-32 -32 -32', '32 32 32' with sv_legacy_bbox_expand 1 and FL_ITEM setorigin(this, this.origin + '0 0 20'); droptofloor(this); -- 2.39.2