mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 23:40:11 +02:00
Merge pull request #8805 from huffman/fix/temp-rez-import
Fix edit.js not allowing imports when you only have temp rez permissions
This commit is contained in:
commit
8659f12a62
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