From 373c59f924d130917ee6e589e53cea16354b674b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 12 Jun 2016 00:05:23 +0200 Subject: [PATCH] - fixed inverse sign for rocket trail particle movement. --- src/p_effect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_effect.cpp b/src/p_effect.cpp index 7919b8d46d..ec051c2990 100644 --- a/src/p_effect.cpp +++ b/src/p_effect.cpp @@ -475,8 +475,8 @@ void P_RunEffect (AActor *actor, int effects) speed = (M_Random () - 128) * (1./200); particle->Vel.X += speed * an.Cos(); particle->Vel.Y += speed * an.Sin(); - particle->Vel.Z -= 1. / 80; - particle->Acc.Z -= 1. / 40; + particle->Vel.Z += 1. / 80; + particle->Acc.Z += 1. / 40; if (M_Random () & 7) particle->color = grey2; else