From 16e10d788a12b12300c2232eeb5513b6df5233b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?eray=20or=C3=A7unus?= Date: Tue, 1 Sep 2020 21:10:35 +0300 Subject: Enable Stinger --- src/objects/Stinger.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/objects/Stinger.cpp') diff --git a/src/objects/Stinger.cpp b/src/objects/Stinger.cpp index d0e6919f..7996db00 100644 --- a/src/objects/Stinger.cpp +++ b/src/objects/Stinger.cpp @@ -51,6 +51,7 @@ CStinger::Init(CPed *pPed) } bIsDeployed = true; m_vPos = pPed->GetPosition(); + m_vPos.z -= 1.0f; m_fMax_Z = Atan2(-pPed->GetForward().x, pPed->GetForward().y) + HALFPI; for (i = 0; i < NUM_STINGER_SEGMENTS; i++) { @@ -61,7 +62,7 @@ CStinger::Init(CPed *pPed) CVector2D fwd2d(pPed->GetForward().x, pPed->GetForward().y); for (i = 0; i < ARRAY_SIZE(m_vPositions); i++) - m_vPositions[i] = fwd2d * Sin(DEGTORAD(i)); + m_vPositions[i] = fwd2d * 1.8f * Sin(DEGTORAD(i)); m_nSpikeState = STINGERSTATE_NONE; m_nTimeOfDeploy = CTimer::GetTimeInMilliseconds(); -- cgit v1.2.3