diff --git a/Aircraft/Generic/helicopter-fcs.nas b/Aircraft/Generic/helicopter-fcs.nas index b822d8313..a8ab4f835 100644 --- a/Aircraft/Generic/helicopter-fcs.nas +++ b/Aircraft/Generic/helicopter-fcs.nas @@ -371,7 +371,7 @@ var CAS = { return 0; } var mach = getprop("/velocities/mach"); - var slip = getprop("/orientation/side-slip-deg"); + var slip = -getprop("/orientation/side-slip-deg"); var min_speed_threshold = getprop("/controls/flight/fcs/gains/cas/input/anti-side-slip-min-speed"); if (mach < min_speed_threshold) { # works only if air speed > min_speed_threshold slip = 0;