mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 03:41:27 +00:00
Fixing a "bug" reportaed by darkangel. It can be implemented as a feature
later if anyone cares enough.
This commit is contained in:
parent
385da24022
commit
9bf6e675fd
1 changed files with 7 additions and 4 deletions
|
@ -198,10 +198,13 @@ void R_DrawParticles (void)
|
||||||
p->vel[2] -= grav;
|
p->vel[2] -= grav;
|
||||||
break;
|
break;
|
||||||
case pt_grav:
|
case pt_grav:
|
||||||
//ifdef QUAKE2
|
// This causes some particles to fall to the
|
||||||
p->vel[2] -= grav * 20;
|
// ground. It's been reported as a bug,
|
||||||
break;
|
// so for now it's being fixed.
|
||||||
//endif
|
// We can implement it as a feature, but it's
|
||||||
|
// not all that cool.
|
||||||
|
// p->vel[2] -= grav * 20;
|
||||||
|
// break;
|
||||||
case pt_slowgrav:
|
case pt_slowgrav:
|
||||||
p->vel[2] -= grav;
|
p->vel[2] -= grav;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue