mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
shrank lava splash particles from size 7 to size 3, makes spy gas grenades in TF faster
This commit is contained in:
parent
6247233e0e
commit
cc85f21430
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,7 @@ R_LavaSplash (vec3_t org)
|
||||||
VectorNormalize (dir);
|
VectorNormalize (dir);
|
||||||
vel = 50 + (rand () & 63);
|
vel = 50 + (rand () & 63);
|
||||||
VectorScale (dir, vel, pvel);
|
VectorScale (dir, vel, pvel);
|
||||||
particle_new (pt_grav, part_tex_dot, porg, 7, pvel,
|
particle_new (pt_grav, part_tex_dot, porg, 3, pvel,
|
||||||
(cl.time + 2 + (rand () & 31) * 0.02),
|
(cl.time + 2 + (rand () & 31) * 0.02),
|
||||||
(224 + (rand () & 7)), 193);
|
(224 + (rand () & 7)), 193);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue