diff options
author | Tim Angus <tim@ngus.net> | 2001-06-20 18:02:30 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-06-20 18:02:30 +0000 |
commit | ead0a752228fc74e748fb4d4bbd43c5399481faa (patch) | |
tree | 6226270febdfdc4d3b75851afc2753215b7e6a82 /src/cgame/cg_ents.c | |
parent | ba6e8c35bf5ffcdca53eb2345319c402ba50a86d (diff) |
Partially finished human economy
Diffstat (limited to 'src/cgame/cg_ents.c')
-rw-r--r-- | src/cgame/cg_ents.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cgame/cg_ents.c b/src/cgame/cg_ents.c index 66e6e8f9..4a73d643 100644 --- a/src/cgame/cg_ents.c +++ b/src/cgame/cg_ents.c @@ -651,8 +651,10 @@ static void CG_TorchLight( centity_t *cent ) VectorSubtract( tr.endpos, from, length ); veclength = VectorLength( length ); + + trap_R_AddLightToScene( tr.endpos, 200, 0.0, 0.0, 1.0 ); - size = veclength / 2.0f; +/* size = veclength / 2.0f; if( size > 255 ) size = 255; if( size < 0 ) size = 0; @@ -741,7 +743,7 @@ static void CG_TorchLight( centity_t *cent ) else if( lum >= 46 ) trap_R_AddPolyToScene( cgs.media.humanTorch1, mf->numPoints, verts ); } - } + }*/ } /* |