Revert "Fixed: A_CustomMissile's CMF_AIMDIRECTION's pitch calculations were also backwards."

This reverts commit b17bd65279.

This would break too many existing mods.
This commit is contained in:
Christoph Oelckers 2016-12-11 11:39:46 +01:00
parent 952e47cfe4
commit d2d960672c

View file

@ -1524,7 +1524,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_CustomMissile)
Pitch += missile->Vel.Pitch();
}
missilespeed = fabs(Pitch.Cos() * missile->Speed);
missile->Vel.Z = -Pitch.Sin() * missile->Speed;
missile->Vel.Z = Pitch.Sin() * missile->Speed;
}
else
{