mirror of
https://github.com/lubosz/overte.git
synced 2025-04-27 12:15:25 +02:00
Merge branch 'stable' of https://github.com/highfidelity/hifi into new-master
This commit is contained in:
commit
94973fa1d0
1 changed files with 7 additions and 0 deletions
|
@ -342,6 +342,13 @@ void Scene::updateItems(const Transaction::Updates& transactions) {
|
|||
|
||||
// Access the true item
|
||||
auto& item = _items[updateID];
|
||||
|
||||
// If item doesn't exist it cannot be updated
|
||||
if (!item.exist()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Good to go, deal with the update
|
||||
auto oldCell = item.getCell();
|
||||
auto oldKey = item.getKey();
|
||||
|
||||
|
|
Loading…
Reference in a new issue