summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2006-06-04 22:17:32 +0000
committerTim Angus <tim@ngus.net>2006-06-04 22:17:32 +0000
commit409e6051a48221cb2a02c182dc0d5e64f2eeb40f (patch)
treebc21ff57ac201d2e7316a23aabb7aeb24902d2de /src/cgame
parentdb12d262430a58bae27e2b1ece3f07215a1083d2 (diff)
* Added target_hurt
* Various other map entity fixes/enhancements * Hovel exploit fixed * Fixed tesla trail disappearing at edge of range * Default player name now inherited from OS * Fixed spelling of Veda's surname :x
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_ents.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgame/cg_ents.c b/src/cgame/cg_ents.c
index 1c7d6a05..02972a51 100644
--- a/src/cgame/cg_ents.c
+++ b/src/cgame/cg_ents.c
@@ -251,6 +251,7 @@ static void CG_EntityEffects( centity_t *cent )
if( CG_IsTrailSystemValid( &cent->muzzleTS ) )
{
+ //FIXME hack to prevent tesla trails reaching too far
if( cent->currentState.eType == ET_BUILDABLE )
{
vec3_t front, back;
@@ -258,7 +259,7 @@ static void CG_EntityEffects( centity_t *cent )
CG_AttachmentPoint( &cent->muzzleTS->frontAttachment, front );
CG_AttachmentPoint( &cent->muzzleTS->backAttachment, back );
- if( Distance( front, back ) > TESLAGEN_RANGE )
+ if( Distance( front, back ) > ( TESLAGEN_RANGE * M_ROOT3 ) )
CG_DestroyTrailSystem( &cent->muzzleTS );
}