diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp index f1fddda1b..29399812e 100644 --- a/src/game/Vehicle.cpp +++ b/src/game/Vehicle.cpp @@ -152,7 +152,7 @@ void VehicleInfo::CalculateBoardingPositionOf(float gx, float gy, float gz, floa NormalizeRotatedPosition(gx - m_owner->GetPositionX(), gy - m_owner->GetPositionY(), lx, ly); lz = gz - m_owner->GetPositionZ(); - lo = MapManager::NormalizeOrientation(go - m_owner->GetOrientation()); + lo = NormalizeOrientation(go - m_owner->GetOrientation()); } /* ************************************************************************************************ diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 54683d947..7b4c04b7f 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12221" + #define REVISION_NR "12222" #endif // __REVISION_NR_H__