mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 12:53:32 +02:00
Fix edit.js not allowing imports when you only have temp rez permissions
This commit is contained in:
parent
08f3a85aab
commit
55d4695489
1 changed files with 1 additions and 1 deletions
|
@ -1155,7 +1155,7 @@ function getPositionToImportEntity() {
|
|||
return position;
|
||||
}
|
||||
function importSVO(importURL) {
|
||||
if (!Entities.canAdjustLocks()) {
|
||||
if (!Entities.canRez() && !Entities.canRezTmp()) {
|
||||
Window.notifyEditError(INSUFFICIENT_PERMISSIONS_IMPORT_ERROR_MSG);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue