on server: note time of entity edit by remote

This commit is contained in:
Andrew Meadows 2017-08-07 11:13:48 -07:00
parent 648b8ff054
commit 481df49386

View file

@ -383,6 +383,9 @@ bool EntityTree::updateEntity(EntityItemPointer entity, const EntityItemProperti
UpdateEntityOperator theOperator(getThisPointer(), containingElement, entity, newQueryAACube);
recurseTreeWithOperator(&theOperator);
entity->setProperties(properties);
if (getIsServer()) {
entity->updateLastEditedFromRemote();
}
// if the entity has children, run UpdateEntityOperator on them. If the children have children, recurse
QQueue<SpatiallyNestablePointer> toProcess;