diff options
author | Tim Angus <tim@ngus.net> | 2006-03-28 11:16:09 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-03-28 11:16:09 +0000 |
commit | f42f817cba50d1a40f27b17e56a210fc5f2ad22e (patch) | |
tree | 2da93f7f55695b47877d9e827b5e966313bd23e1 /src/cgame | |
parent | 64f805804409732a1dade13a37bd1c8fd6083c7d (diff) |
* Increase Dragoon range slighly
* Disable static_transform particle system warning
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_particles.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cgame/cg_particles.c b/src/cgame/cg_particles.c index b435f56e..ce407549 100644 --- a/src/cgame/cg_particles.c +++ b/src/cgame/cg_particles.c @@ -221,12 +221,7 @@ static particle_t *CG_SpawnNewParticle( baseParticle_t *bp, particleEjector_t *p case PMT_STATIC_TRANSFORM: if( !CG_AttachmentAxis( &ps->attachment, transform ) ) - { - CG_Printf( S_COLOR_RED "ERROR: a particle with velocityType " - "static_transform is not attached to something which can " - "provide a transformation\n" ); return NULL; - } if( bp->velMoveValues.dirType == PMD_POINT ) { @@ -2023,12 +2018,7 @@ static void CG_EvaluateParticlePhysics( particle_t *p ) case PMT_STATIC_TRANSFORM: if( !CG_AttachmentAxis( &ps->attachment, transform ) ) - { - CG_Printf( S_COLOR_RED "ERROR: a particle with accelerationType " - "static_transform is not attached to something which can " - "provide a transformation\n" ); return; - } if( bp->accMoveValues.dirType == PMD_POINT ) { |