diff options
Diffstat (limited to 'src/game/Vehicle.cpp')
| -rw-r--r-- | src/game/Vehicle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp index bd81199a375..5e860257d2e 100644 --- a/src/game/Vehicle.cpp +++ b/src/game/Vehicle.cpp @@ -173,7 +173,7 @@ int8 Vehicle::GetNextEmptySeat(int8 seatId, bool next) const { SeatMap::const_iterator seat = m_Seats.find(seatId); if(seat == m_Seats.end()) return -1; - while(seat->second.passenger || !seat->second.seatInfo->IsUsable()) + while (seat->second.passenger || !seat->second.seatInfo->IsUsable()) { if(next) { |
