mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 02:25:48 +02:00
fix typo that broke the build
This commit is contained in:
parent
6e7eccdb27
commit
756d09d895
1 changed files with 1 additions and 1 deletions
|
@ -730,7 +730,7 @@ void EntityItem::simulate(const quint64& now) {
|
|||
}
|
||||
|
||||
bool EntityItem::isMoving() const {
|
||||
return hasVelocity() (hasGravity() && !isRestingOnSurface()) || hasAngularVelocity();
|
||||
return hasVelocity() || (hasGravity() && !isRestingOnSurface()) || hasAngularVelocity();
|
||||
}
|
||||
|
||||
bool EntityItem::lifetimeHasExpired() const {
|
||||
|
|
Loading…
Reference in a new issue