We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf45fd7 commit cb42317Copy full SHA for cb42317
gamemode/core/libraries/keybind.lua
@@ -114,7 +114,7 @@ local KeybindKeys = {
114
115
function lia.keybind.add(k, d, cb, rcb)
116
local c = isstring(k) and KeybindKeys[string.lower(k)] or k
117
- local d = isstring(d) and L(d) or d
+ d = isstring(d) and L(d) or d
118
if not c then return end
119
lia.keybind.stored[d] = lia.keybind.stored[d] or {}
120
if not lia.keybind.stored[d].value then lia.keybind.stored[d].value = c end
0 commit comments