don't assert when unserializing a 'spring' action

This commit is contained in:
Seth Alves 2018-05-11 13:55:29 -07:00
parent c624528f72
commit 85a6e2555f

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;