RHS Feedback

View Issue Details Jump to Notes ] Issue History ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0002603AFRF[All Projects] Generalpublic2016-08-21 19:262016-08-23 12:51
ReporterSnippers 
Assigned Toreyhard 
PrioritynoneSeveritytweakReproducibilityalways
StatusresolvedResolutionfixed 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version0.4.2 
Summary0002603: Tigr turret script blocks keyUp event handler.
DescriptionThe armed tigr (rhs_tigr_sts_3camo_msv), has a script that adds a keyDown event handler. This is because the event handler always returns true. This in turns means the engine will not execute any further keyDown eventhandlers.

This is a problem for other mods (ACRE2) that are reliant on using these key handlers.

What it looks like now (rhs_tigr_sts_turret_ui.sqf):

_id = (findDisplay 46) displayAddEventHandler ["KeyUp", {
...
    true
}];



What it should look like:

_id = (findDisplay 46) displayAddEventHandler ["KeyUp", {
        private _handled = false;
        if (doAction) then {
            _handled = true;
        };
    _handled;
}];
TagsNo tags attached.
Is it a wish/request?No
RHS version
Arma 3 version1.62
Did you used any other mod when the error occurred?Yes
Which mods?ACRE2
Attached Files

- Relationships

-  Notes
There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
2016-08-21 19:26 Snippers New Issue
2016-08-21 19:28 Snippers Description Updated View Revisions
2016-08-23 12:51 reyhard Status new => resolved
2016-08-23 12:51 reyhard Fixed in Version => 0.4.2
2016-08-23 12:51 reyhard Resolution open => fixed
2016-08-23 12:51 reyhard Assigned To => reyhard


Copyright © 2000 - 2024 MantisBT Team
Powered by Mantis Bugtracker