diff options
author | Королев Николай Николаевич <nickvnuk@gmail.com> | 2019-07-13 18:18:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-13 18:18:27 +0200 |
commit | 5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394 (patch) | |
tree | 68c4c9967f331e516493c25c3b57c47ff0478a37 /src | |
parent | little change to aspect ratio defines (diff) | |
parent | fixed policeDontCare (diff) | |
download | re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.tar re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.tar.gz re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.tar.bz2 re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.tar.lz re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.tar.xz re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.tar.zst re3-5c8ae5cfa88b4290dacbd9b334c7bdaf5f3fd394.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/Wanted.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/Wanted.cpp b/src/core/Wanted.cpp index 2868eb8c..7b865311 100644 --- a/src/core/Wanted.cpp +++ b/src/core/Wanted.cpp @@ -212,6 +212,8 @@ CWanted::ReportCrimeNow(eCrimeType type, const CVector &coors, bool policeDoesnt wantedLevelDrop = min(CCullZones::GetWantedLevelDrop(), 100); chaos = (1.0f - wantedLevelDrop/100.0f) * sensitivity; + if (policeDoesntCare) + chaos *= 0.333f; switch(type){ case CRIME_POSSESSION_GUN: break; |