diff options
author | Tim Angus <tim@ngus.net> | 2004-03-28 02:07:27 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2004-03-28 02:07:27 +0000 |
commit | 36ceed63fed29968e418ac4d4bd60d1c1a14bec8 (patch) | |
tree | c0b4a65ac14807e99c9e3e34ed003aff7a15f8c0 /src/game | |
parent | 1c686ae22446e294c796d8bebf5cc1693cbc6235 (diff) |
* Fixed bug where upgraded chimera's electrical attack sometimes didn't work
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_public.h | 1 | ||||
-rw-r--r-- | src/game/g_local.h | 1 | ||||
-rw-r--r-- | src/game/g_weapon.c | 6 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index f00ad321..6a279cf5 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -1258,6 +1258,7 @@ void ProjectPointOntoVector( vec3_t point, vec3_t vStart, float VectorDistance( vec3_t v1, vec3_t v2 ); // done. +#define M_ROOT3 1.732050808f float VectorMinComponent( vec3_t v ); float VectorMaxComponent( vec3_t v ); float round( float v ); diff --git a/src/game/g_local.h b/src/game/g_local.h index fdffbbb6..db6e64d6 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -579,7 +579,6 @@ void G_Physics( gentity_t *ent, int msec ); // g_buildable.c // -#define M_ROOT3 1.732050808f #define MAX_ALIEN_BBOX 25 typedef enum diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 4b6f45d6..1aa7504c 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -921,8 +921,8 @@ void areaZapFire( gentity_t *ent ) trace_t tr; int damage; - VectorAdd( muzzle, range, maxs ); - VectorSubtract( muzzle, range, mins ); + VectorAdd( ent->client->ps.origin, range, maxs ); + VectorSubtract( ent->client->ps.origin, range, mins ); num = trap_EntitiesInBox( mins, maxs, entityList, MAX_GENTITIES ); for( i = 0; i < num; i++ ) @@ -960,7 +960,7 @@ void areaZapFire( gentity_t *ent ) // send railgun beam effect tent = G_TempEntity( enemy->s.pos.trBase, EV_ALIENZAP ); - VectorCopy( muzzle, tent->s.origin2 ); + VectorCopy( ent->client->ps.origin, tent->s.origin2 ); tent->s.generic1 = ent->s.number; //src tent->s.clientNum = enemy->s.number; //dest |