Skip to content

Commit

Permalink
fix 2nd loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Uveso committed Nov 11, 2024
1 parent 6f8c67c commit d2a004d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/keymap/keymapper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function GetKeyActions()
end

for k,v in debugKeyActions do
if ret[k] and ret[k] != v.action then
if ret[k] and ret[k].action != v.action then
WARN(string.format("Overwriting user key action: %s -> %s", k, ret[k].action))
end

Expand Down

0 comments on commit d2a004d

Please sign in to comment.