mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
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];