Skip to content

Commit

Permalink
Merge pull request #1411 from feelfreetofee/patch-4
Browse files Browse the repository at this point in the history
fix(es_extended/client/functions.lua) RegisterInput and HashString bug
  • Loading branch information
Gellipapa authored Oct 13, 2024
2 parents e044f64 + 622c8e5 commit 1443d62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions [core]/es_extended/client/functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function ESX.DrawMissionText(msg, time)
end

function ESX.HashString(str)
return ('~INPUT_%s~'):format(('%x'):format(joaat(str)):upper())
return ('~INPUT_%s~'):format(('%x'):format(joaat(str) & 0x7fffffff + 2 ^ 31):upper())
end

function ESX.OpenContext(...)
Expand All @@ -140,12 +140,12 @@ function ESX.RefreshContext(...)
end

function ESX.RegisterInput(command_name, label, input_group, key, on_press, on_release)
RegisterCommand("+" .. command_name, on_press)
Core.Input[command_name] = ESX.HashString("+" .. command_name)
RegisterCommand(on_release and '+' .. command_name or command_name, on_press)
Core.Input[command_name] = ESX.HashString(command_name)
if on_release then
RegisterCommand("-" .. command_name, on_release)
RegisterCommand('-' .. command_name, on_release)
end
RegisterKeyMapping("+" .. command_name, label or '', input_group or 'keyboard', key or '')
RegisterKeyMapping(command_name, label or '', input_group or 'keyboard', key or '')
end

function ESX.UI.Menu.RegisterType(menuType, open, close)
Expand Down

0 comments on commit 1443d62

Please sign in to comment.