mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #16512 from AndrewMeadows/time-moves-forward
DEV-2585: fix for whiteboard poly lines getting their parentID incorrectly reverted
This commit is contained in:
commit
6169936c2b
3 changed files with 11 additions and 6 deletions
|
@ -2707,10 +2707,12 @@ quint64 EntityItem::getLastEdited() const {
|
|||
}
|
||||
|
||||
void EntityItem::setLastEdited(quint64 lastEdited) {
|
||||
withWriteLock([&] {
|
||||
_lastEdited = _lastUpdated = lastEdited;
|
||||
_changedOnServer = glm::max(lastEdited, _changedOnServer);
|
||||
});
|
||||
if (lastEdited == 0 || lastEdited > _lastEdited) {
|
||||
withWriteLock([&] {
|
||||
_lastEdited = _lastUpdated = lastEdited;
|
||||
_changedOnServer = glm::max(lastEdited, _changedOnServer);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
void EntityItem::markAsChangedOnServer() {
|
||||
|
|
|
@ -5071,8 +5071,9 @@ void EntityItemProperties::convertToCloneProperties(const EntityItemID& entityID
|
|||
setEntityHostType(entity::HostType::LOCAL);
|
||||
setCollisionless(true);
|
||||
}
|
||||
setCreated(usecTimestampNow());
|
||||
setLastEdited(usecTimestampNow());
|
||||
uint64_t now = usecTimestampNow();
|
||||
setCreated(now);
|
||||
setLastEdited(now);
|
||||
setCloneable(ENTITY_ITEM_DEFAULT_CLONEABLE);
|
||||
setCloneLifetime(ENTITY_ITEM_DEFAULT_CLONE_LIFETIME);
|
||||
setCloneLimit(ENTITY_ITEM_DEFAULT_CLONE_LIMIT);
|
||||
|
|
|
@ -1942,6 +1942,8 @@ int EntityTree::processEditPacketData(ReceivedMessage& message, const unsigned c
|
|||
FilterType filterType = isPhysics ? FilterType::Physics : (isAdd ? FilterType::Add : FilterType::Edit);
|
||||
bool allowed = (!isPhysics && senderNode->isAllowedEditor()) || filterProperties(existingEntity, properties, properties, wasChanged, filterType);
|
||||
if (!allowed) {
|
||||
// the update failed and we need to convey that fact to the sender
|
||||
// our method is to re-assert the current properties and bump the lastEdited timestamp
|
||||
auto timestamp = properties.getLastEdited();
|
||||
properties = EntityItemProperties();
|
||||
properties.setLastEdited(timestamp);
|
||||
|
|
Loading…
Reference in a new issue