mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-17 07:46:36 +02:00
Fix MyAvatar::isReadyForPhysics() in serverless domains.
This commit is contained in:
parent
608575cf17
commit
b8379045a8
1 changed files with 1 additions and 1 deletions
|
@ -2883,7 +2883,7 @@ float MyAvatar::getWalkSpeed() const {
|
|||
}
|
||||
|
||||
bool MyAvatar::isReadyForPhysics() const {
|
||||
return _haveReceivedHeightLimitsFromDomain;
|
||||
return qApp->isServerlessMode() || _haveReceivedHeightLimitsFromDomain;
|
||||
}
|
||||
|
||||
void MyAvatar::setSprintMode(bool sprint) {
|
||||
|
|
Loading…
Reference in a new issue