diff --git a/rwgame/RWGame.cpp b/rwgame/RWGame.cpp index f46c4257..62f7caaa 100644 --- a/rwgame/RWGame.cpp +++ b/rwgame/RWGame.cpp @@ -525,7 +525,10 @@ void RWGame::tick(float dt) { currentCam.getView()); // Use the current camera position to spawn pedestrians. world->cleanupTraffic(currentCam); - world->createTraffic(currentCam); + // Only create new traffic outside cutscenes + if (!state.currentCutscene) { + world->createTraffic(currentCam); + } } } }