mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-19 15:40:58 +00:00
- last FindDistance call in player.cpp
This commit is contained in:
parent
aba453dccf
commit
856f82c97c
1 changed files with 1 additions and 1 deletions
|
@ -7263,7 +7263,7 @@ int SearchSpawnPosition(PLAYER* pp)
|
|||
|
||||
if (opp != pp) // don't test for yourself
|
||||
{
|
||||
if (FindDistance3D(spawn_sprite->int_pos() - opp->int_ppos()) < 1000)
|
||||
if ((spawn_sprite->spr.pos.XY() - opp->pos.XY()).Length() < 62.25)
|
||||
{
|
||||
blocked = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue