mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
Reduce telefrag bounds
This commit is contained in:
parent
1500d213e7
commit
4bec5cef01
1 changed files with 2 additions and 2 deletions
|
@ -42,8 +42,8 @@ typedef struct spawnsort_s {
|
|||
|
||||
static qboolean SpotWouldTelefrag(float *origin)
|
||||
{
|
||||
static Vector mins = Vector(-16, -16, 1);
|
||||
static Vector maxs = Vector(16, 16, 97);
|
||||
static Vector mins = Vector(-15, -15, 1);
|
||||
static Vector maxs = Vector(15, 15, 96);
|
||||
trace_t trace;
|
||||
|
||||
trace = G_Trace(Vector(origin), mins, maxs, Vector(origin), NULL, MASK_PLAYERSTART, qfalse, "SpotWouldTelefrag");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue