mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
Fixed kooky conditional.
This commit is contained in:
parent
501d071eb1
commit
47268fef32
1 changed files with 1 additions and 1 deletions
|
@ -1490,7 +1490,7 @@ void MyAvatar::updateMotionBehaviorsFromMenu() {
|
|||
}
|
||||
|
||||
void MyAvatar::renderAttachments(RenderMode renderMode) {
|
||||
if (!Application::getInstance()->getCamera()->getMode() == CAMERA_MODE_FIRST_PERSON || renderMode == MIRROR_RENDER_MODE) {
|
||||
if (Application::getInstance()->getCamera()->getMode() != CAMERA_MODE_FIRST_PERSON || renderMode == MIRROR_RENDER_MODE) {
|
||||
Avatar::renderAttachments(renderMode);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue