Farseer Body.cs bug fix for impulse force

Small bug fix I figured I'd share. Line 1558 of Body.cs in the farseer library should be:
this.ApplyLinearImpulse(force);
instead of:
this.ApplyLinearImpulse(force, force);

Comments