further unmangle branch split

This commit is contained in:
Seth Alves 2015-10-15 10:33:58 -07:00
parent a78728c96b
commit 64c5cde2d2
2 changed files with 5 additions and 0 deletions

View file

@ -64,6 +64,10 @@ void AvatarActionHold::updateActionWorker(float deltaTimeStep) {
_rotationalTarget = rotation;
_positionalTargetSet = true;
_rotationalTargetSet = true;
auto ownerEntity = _ownerEntity.lock();
if (ownerEntity) {
ownerEntity->setActionDataDirty(true);
}
});
}
if (gotLock) {

View file

@ -219,6 +219,7 @@ void ObjectActionSpring::deserialize(QByteArray serializedArguments) {
uint16_t serializationVersion;
dataStream >> serializationVersion;
if (serializationVersion != ObjectActionSpring::springVersion) {
assert(false);
return;
}