auQuiksilver / Apex-Framework

Apex Framework
MIT License
81 stars 46 forks source link

Invalid Key #12

Open VileAce opened 4 years ago

VileAce commented 4 years ago

I may be wrong but ~line 189 in fn_clientEventKeyDown.sqf says 'if (_key in (actionKeys 'Zeus')) then {}; ' when I run actionKeys "zeus"; it returns '[]' if I run actionKeys "curatorInterface"; it returns [21] the expected value. From my research 'zeus' is not a valid actionKey. I believe the line should read 'if (_key in (actionKeys 'curatorInterface')) then {}; '