mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 15:22:42 +02:00
Fixed check for if script permission is enabled
This commit is contained in:
parent
95406c44c6
commit
5aac93352c
1 changed files with 3 additions and 0 deletions
|
@ -43,6 +43,9 @@ bool ScriptPermissions::isCurrentScriptAllowed(ScriptPermissions::Permission per
|
|||
int permissionIndex = static_cast<int>(permission);
|
||||
// Check if the permission checking is active
|
||||
Setting::Handle<bool> isCheckingEnabled(scriptPermissionSettingEnableKeyNames[permissionIndex], scriptPermissionSettingEnableDefaultValues[permissionIndex]);
|
||||
if (!isCheckingEnabled.get()) {
|
||||
return true;
|
||||
}
|
||||
// Get the script manager:
|
||||
auto engine = Scriptable::engine();
|
||||
if (!engine) {
|
||||
|
|
Loading…
Reference in a new issue