2 lua files
DCS World\Mods\aircraft\MiG-21BIS\Input\MiG-21\keyboard\default.lua
DCS World\Mods\aircraft\MiG-21BIS\Input\MiG-21\joystick\default.lua
original error
-- Engine
{combos={{key=']',reformers={'RShift'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=1.0,name='Anti surge doors - Auto',category='Engine'},
{combos={{key=']',reformers={'RShift','RCtrl'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=0.0,name='Anti surge doors - Manual',category='Engine'},
change to
{combos={{key=']',reformers={'RShift'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=1.0,name='Anti surge doors - Manual',category='Engine'},
{combos={{key=']',reformers={'RShift','RCtrl'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=0.0,name='Anti surge doors - Auto',category='Engine'},
original error
-- ARU
{combos={{key='U',reformers={'RCtrl'}}},down=device_commands.ARUhighSpeed,up=device_commands.ARUhighSpeed,cockpit_device_id=devices.ARU,value_down=1,value_up=0,name='ARU manual - Low Speed',category='Flight Controls'},
{combos={{key='U',reformers={'LCtrl'}}},down=device_commands.ARUhighSpeed,up=device_commands.ARUhighSpeed,cockpit_device_id=devices.ARU,value_down=-1,value_up=0,name='ARU manual - High Speed',category='Flight Controls'},
change to
{combos={{key='U',reformers={'RCtrl'}}},down=device_commands.ARUhighSpeed,up=device_commands.ARUhighSpeed,cockpit_device_id=devices.ARU,value_down=1,value_up=0,name='ARU manual - High Speed',category='Flight Controls'},
{combos={{key='U',reformers={'LCtrl'}}},down=device_commands.ARUlowSpeed,up=device_commands.ARUlowSpeed,cockpit_device_id=devices.ARU,value_down=-1,value_up=0,name='ARU manual - Low Speed',category='Flight Controls'},