don't return void

This commit is contained in:
Seth Alves 2016-02-10 13:49:03 -08:00
parent 9d21c3d549
commit 49f2724608

View file

@ -1482,7 +1482,7 @@ void EntityItem::updateAngularVelocityFromNetwork(const glm::vec3& value) {
if (shouldSuppressLocationEdits()) {
return;
}
return updateAngularVelocity(value);
updateAngularVelocity(value);
}
void EntityItem::updateAngularDamping(float value) {