From b92ce2668abffd2c1753956a55057497dc1575fe Mon Sep 17 00:00:00 2001 From: tovjemam Date: Sun, 29 Mar 2026 01:18:54 +0100 Subject: [PATCH] Fix passenger exit in garage --- src/game/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/game.cpp b/src/game/game.cpp index 5cdcb54..ea6a2da 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -125,7 +125,7 @@ void game::Game::MovePlayerToWorld(Player& player, EnterableWorld& world, bool w float yaw) { auto& player_info = GetPlayerInfo(player); - MovePlayerToWorld(player_info, &world, pos, yaw, true); + MovePlayerToWorld(player_info, &world, pos, yaw, with_vehicle); } void game::Game::BroadcastChat(const std::string& text)