GregP Posted March 15, 2016 Posted March 15, 2016 This likely isn't the right place to post this, but I don't see any other L-39-specific bug report area. In the latest 1.5.3 version, for the L-39ZA in the default.lua files, the controls to select and deselect the inboard and outboard stations don't fully work due to a typo in the files: { down = device_commands.Button_48, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, name = _('Outboard Stations Select Button'), category = {_('Left Front Panel'), _('Armament Control Panel'), _('Only Front Cockpit')}}, { down = device_commands.Button_50, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, name = _('Inboard Stations Deselect Button'), category = {_('Left Front Panel'), _('Armament Control Panel'), _('Only Front Cockpit')}}, { down = device_commands.Button_49, up = device_commands.Button_49, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, value_up = 0, name = _('Outboard Stations Select Button'), category = {_('Left Front Panel'), _('Armament Control Panel'), _('Only Front Cockpit')}}, { down = device_commands.Button_51, up = device_commands.Button_51, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, value_up = 0, name = _('Inboard Stations Deselect Button'), category = {_('Left Front Panel'), _('Armament Control Panel'), _('Only Front Cockpit')}}, The middle two lines need to be changed to: { down = device_commands.Button_50, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, name = _('Inboard Stations Select Button'), category = {_('Left Front Panel'), _('Armament Control Panel'), _('Only Front Cockpit')}}, { down = device_commands.Button_49, up = device_commands.Button_49, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, value_up = 0, name = _('Outboard Stations Deselect Button'), category = {_('Left Front Panel'), _('Armament Control Panel'), _('Only Front Cockpit')}},
SFC Tako Posted March 15, 2016 Posted March 15, 2016 Good catch! For now I've only been mouse-clicking on the buttons...which is just plain idiotic in the middle of combat ;) My Semi-Pro Youtube Channel
Recommended Posts