diff --git a/voxel-server/src/main.cpp b/voxel-server/src/main.cpp index 9496375ca9..bacd253d88 100644 --- a/voxel-server/src/main.cpp +++ b/voxel-server/src/main.cpp @@ -170,7 +170,7 @@ void *distributeVoxelsToListeners(void *args) { ViewFrustum viewFrustum; // get position and orientation details from the camera viewFrustum.setPosition(agentData->getCameraPosition()); - viewFrustum.setOrientation(agentData->getCameraDirection(),agentData->getCameraUp(),agentData->getCameraRight()); + viewFrustum.setOrientation(agentData->getCameraDirection(), agentData->getCameraUp(), agentData->getCameraRight()); // Also make sure it's got the correct lens details from the camera viewFrustum.setFieldOfView(agentData->getCameraFov());