mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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;
|
||||
dataStream >> type;
|
||||
assert(type == getType());
|
||||
assert(type == getType() || type == DYNAMIC_TYPE_SPRING);
|
||||
|
||||
QUuid id;
|
||||
dataStream >> id;
|
||||
|
|
Loading…
Reference in a new issue