diff options
author | aap <aap@papnet.eu> | 2019-07-12 18:01:22 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-12 18:01:22 +0200 |
commit | 60711154baf5477d6f4c12add1ecdd0a24c0c116 (patch) | |
tree | 460199051422d03a6a70a1e57f9c8d2d588c85b6 /src/control | |
parent | CAutomobile::ProcessControlInputs (diff) | |
download | re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.gz re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.bz2 re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.lz re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.xz re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.tar.zst re3-60711154baf5477d6f4c12add1ecdd0a24c0c116.zip |
Diffstat (limited to 'src/control')
-rw-r--r-- | src/control/Darkel.cpp | 2 | ||||
-rw-r--r-- | src/control/Script.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/control/Darkel.cpp b/src/control/Darkel.cpp index ab28f96e..678fcd45 100644 --- a/src/control/Darkel.cpp +++ b/src/control/Darkel.cpp @@ -300,7 +300,7 @@ void CDarkel::Update() TimeOfFrenzyStart = CTimer::GetTimeInMilliseconds(); - FindPlayerPed()->m_pWanted->SetWantedLevel(NOTWANTED); + FindPlayerPed()->m_pWanted->SetWantedLevel(0); if (WeaponType == WEAPONTYPE_UZI_DRIVEBY) WeaponType = WEAPONTYPE_UZI; diff --git a/src/control/Script.cpp b/src/control/Script.cpp index b50c101e..f3a18195 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -124,8 +124,8 @@ void CMissionCleanup::Process() CHud::m_ItemToFlash = -1; CHud::SetHelpMessage(nil, false); CUserDisplay::OnscnTimer.m_bDisabled = false; - CWorld::Players[0].m_pPed->m_pWanted->m_IsIgnoredByCops = false; - CWorld::Players[0].m_pPed->m_pWanted->m_IsIgnoredByEveryOne = false; + CWorld::Players[0].m_pPed->m_pWanted->m_bIgnoredByCops = false; + CWorld::Players[0].m_pPed->m_pWanted->m_bIgnoredByEveryone = false; CWorld::Players[0].MakePlayerSafe(false); CTheScripts::StoreVehicleIndex = -1; CTheScripts::StoreVehicleWasRandom = true; |