fix typo that broke the build

This commit is contained in:
Andrew Meadows 2014-12-17 16:06:15 -08:00
parent 6e7eccdb27
commit 756d09d895

View file

@ -730,7 +730,7 @@ void EntityItem::simulate(const quint64& now) {
} }
bool EntityItem::isMoving() const { bool EntityItem::isMoving() const {
return hasVelocity() (hasGravity() && !isRestingOnSurface()) || hasAngularVelocity(); return hasVelocity() || (hasGravity() && !isRestingOnSurface()) || hasAngularVelocity();
} }
bool EntityItem::lifetimeHasExpired() const { bool EntityItem::lifetimeHasExpired() const {