From e352098c4f53c609862929dea2ff1782640812ba Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 25 Aug 2004 02:07:48 +0000 Subject: [PATCH] slightly changed color of iceblast in prydon git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4372 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_main.c | 4 ++-- cl_particles.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cl_main.c b/cl_main.c index b387273f..8ab9bf73 100644 --- a/cl_main.c +++ b/cl_main.c @@ -789,8 +789,8 @@ void CL_LinkNetworkEntity(entity_t *e) if (gamemode == GAME_PRYDON) { dlightradius = max(dlightradius, 100); - dlightcolor[0] += 0.50f; - dlightcolor[1] += 0.50f; + dlightcolor[0] += 0.30f; + dlightcolor[1] += 0.60f; dlightcolor[2] += 1.20f; } else diff --git a/cl_particles.c b/cl_particles.c index 6e936f92..081d3ae5 100644 --- a/cl_particles.c +++ b/cl_particles.c @@ -1196,7 +1196,7 @@ void CL_RocketTrail (vec3_t start, vec3_t end, int type, entity_t *ent) if (gamemode == GAME_GOODVSBAD2) particle(pt_static, PARTICLE_BILLBOARD, particlepalette[0 + (rand()&255)], particlepalette[0 + (rand()&255)], tex_particle, false, PBLEND_ALPHA, 6, 6, qd*255, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0); else if (gamemode == GAME_PRYDON) - particle(pt_static, PARTICLE_BILLBOARD, 0x202040, 0x202040, tex_particle, false, PBLEND_ADD, 6, 6, qd*128, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0); + particle(pt_static, PARTICLE_BILLBOARD, 0x103040, 0x204050, tex_particle, false, PBLEND_ADD, 6, 6, qd*128, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0); else particle(pt_static, PARTICLE_BILLBOARD, 0x502030, 0x502030, tex_particle, false, PBLEND_ADD, 6, 6, qd*128, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0); } -- 2.39.2