mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 06:23:06 +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;
|
return position;
|
||||||
}
|
}
|
||||||
function importSVO(importURL) {
|
function importSVO(importURL) {
|
||||||
if (!Entities.canAdjustLocks()) {
|
if (!Entities.canRez() && !Entities.canRezTmp()) {
|
||||||
Window.notifyEditError(INSUFFICIENT_PERMISSIONS_IMPORT_ERROR_MSG);
|
Window.notifyEditError(INSUFFICIENT_PERMISSIONS_IMPORT_ERROR_MSG);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue