From 57ed86bd75efc80b99a3acd4eb0df163a66ac037 Mon Sep 17 00:00:00 2001 From: puzl Date: Sun, 7 May 2006 08:37:00 +0000 Subject: [PATCH] o Leap no longer triggers 'the enemy approaches' o Hive no longer takes FF damage o Can no longer trigger 'the enemy approaches' during the pregame git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@456 67975925-1194-0748-b3d5-c16f83f1a3a1 --- releases/3.2.0/source/dlls/player.cpp | 7 ++++--- releases/3.2.0/source/mod/AvHPlayer.cpp | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/releases/3.2.0/source/dlls/player.cpp b/releases/3.2.0/source/dlls/player.cpp index 3a49c983..1f337dbd 100644 --- a/releases/3.2.0/source/dlls/player.cpp +++ b/releases/3.2.0/source/dlls/player.cpp @@ -1784,11 +1784,12 @@ void CBasePlayer::PlayerUse ( void ) { if ( pObject->pev->iuser3 != AVH_USER3_HIVE ) { vec3_t objectLocation; - vec3_t playerLocation; AvHSHUGetEntityLocation(pObject->entindex(), objectLocation); - AvHSHUGetEntityLocation(this->entindex(), playerLocation); - if ( VectorDistance(objectLocation, playerLocation) > PLAYER_SEARCH_RADIUS ) + double distance=VectorDistance(objectLocation, pev->origin); + if ( distance > PLAYER_SEARCH_RADIUS ) { + ALERT(at_console, "skipping %d\n", pObject->entindex()); continue; + } } if (pObject->ObjectCaps() & (FCAP_IMPULSE_USE | FCAP_CONTINUOUS_USE | FCAP_ONOFF_USE)) { diff --git a/releases/3.2.0/source/mod/AvHPlayer.cpp b/releases/3.2.0/source/mod/AvHPlayer.cpp index 08d37220..c01d192b 100644 --- a/releases/3.2.0/source/mod/AvHPlayer.cpp +++ b/releases/3.2.0/source/mod/AvHPlayer.cpp @@ -2281,7 +2281,7 @@ void AvHPlayer::PlayerTouch(CBaseEntity* inOther) entvars_t* theInflictor = this->m_pActiveItem->pev; float theScalar = 1.0f; - if((this->mTimeLeapEnd != -1) && (gpGlobals->time < this->mTimeLeapEnd)) + if((this->mTimeLeapEnd != -1) && (gpGlobals->time < this->mTimeLeapEnd) && inOther->pev->iuser3 != AVH_USER3_HIVE ) { // Do damage to entity if(GetGameRules()->CanEntityDoDamageTo(this, inOther, &theScalar) && (inOther->pev->team != this->pev->team))