mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #13159 from sethalves/fix-action-assert
don't assert when unserializing a 'spring' action
This commit is contained in:
commit
ca56449c1d
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