Merge pull request #13159 from sethalves/fix-action-assert

don't assert when unserializing a 'spring' action
This commit is contained in:
Seth Alves 2018-05-11 15:15:51 -07:00 committed by GitHub
commit ca56449c1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -397,7 +397,7 @@ void ObjectActionTractor::deserialize(QByteArray serializedArguments) {
EntityDynamicType type;
dataStream >> type;
assert(type == getType());
assert(type == getType() || type == DYNAMIC_TYPE_SPRING);
QUuid id;
dataStream >> id;