Fix can use keybind util

This commit is contained in:
Vortrex
2022-01-07 19:51:19 -06:00
parent 000d312d21
commit ce3e09575e

View File

@@ -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;
}
// ===========================================================================