Index: Games/Pingus/src/force_vector.cxx =================================================================== RCS file: /usr/local/cvsroot/Games/Pingus/src/force_vector.cxx,v retrieving revision 1.7 diff -u -r1.7 force_vector.cxx --- Games/Pingus/src/force_vector.cxx 28 Sep 2002 11:52:21 -0000 1.7 +++ Games/Pingus/src/force_vector.cxx 12 Oct 2002 21:26:33 -0000 @@ -116,11 +116,11 @@ // Go through all of the forces and apply them all for (GForceIter i = grav_array.begin(); i != grav_array.end(); ++i) - tv = i->apply_forces(p,v); + tv = i->apply_forces(p,tv); // Explosion array... for (EForceIter j = explo_array.begin(); j != explo_array.end(); ++j) - tv = j->apply_forces(p,v); + tv = j->apply_forces(p,tv); return tv; }