From 65527777b80802faa8f8ea7d40d7fd2f7c7af9f3 Mon Sep 17 00:00:00 2001 From: Azumgi Date: Wed, 31 Jan 2018 04:04:41 +0300 Subject: [PATCH] Fixed empty unassigned bind --- vmf_source/scripts/mods/vmf/modules/vmf_options_view.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vmf_source/scripts/mods/vmf/modules/vmf_options_view.lua b/vmf_source/scripts/mods/vmf/modules/vmf_options_view.lua index da23bae..4ebf058 100644 --- a/vmf_source/scripts/mods/vmf/modules/vmf_options_view.lua +++ b/vmf_source/scripts/mods/vmf/modules/vmf_options_view.lua @@ -1158,6 +1158,10 @@ local function build_keybind_string(keys) end end + if keybind_string == "" then + keybind_string = "" + end + return keybind_string end