mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 02:52:57 +02:00
don't assert when unserializing a 'spring' action
This commit is contained in:
parent
c624528f72
commit
85a6e2555f
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ void ObjectActionTractor::deserialize(QByteArray serializedArguments) {
|
||||||
|
|
||||||
EntityDynamicType type;
|
EntityDynamicType type;
|
||||||
dataStream >> type;
|
dataStream >> type;
|
||||||
assert(type == getType());
|
assert(type == getType() || type == DYNAMIC_TYPE_SPRING);
|
||||||
|
|
||||||
QUuid id;
|
QUuid id;
|
||||||
dataStream >> id;
|
dataStream >> id;
|
||||||
|
|
Loading…
Reference in a new issue