mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +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;
|
||||
}
|
||||
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