diff --git a/scripts/client/keybind.js b/scripts/client/keybind.js index edbb18b7..5a8a4aaa 100644 --- a/scripts/client/keybind.js +++ b/scripts/client/keybind.js @@ -62,7 +62,19 @@ function hasKeyBindDelayElapsed() { // =========================================================================== function canLocalPlayerUseKeyBinds() { - return true; //(!usingSkinSelector && isSpawned && !itemActionDelayEnabled); + if(isAnyGUIActive()) { + return false; + } + + if(!isSpawned) { + return false; + } + + if(itemActionDelayEnabled) { + return false; + } + + return true; } // ===========================================================================