Files
DayZ-Epoch/SQF/dayz_code
ebayShopper c1110fc61c Fix a rare error with keyboard_keys
Some combo binds will cause actionKeys to return a number greater than
six digits. See AgentRev's note:
https://community.bistudio.com/wiki/actionKeys

An example is NumLock + P [1.15763e+009]. Using a number this large as
an index errors out. Example:
test_array = [];
test_array set [9999991,true];

But six digits or less will not error:
test_array = [];
test_array set [999999,true];
2017-11-13 17:34:43 -05:00
..
2016-03-30 14:55:45 -04:00
2016-04-27 14:42:50 -04:00
2017-11-10 15:38:31 -05:00
2016-11-23 13:50:24 -05:00
2016-11-30 00:08:52 -05:00
2017-10-26 15:02:35 +02:00
2017-07-30 17:57:39 -04:00