summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-07-18 04:26:46 +0200
committereray orçunus <erayorcunus@gmail.com>2019-07-18 04:27:29 +0200
commit59671fab03703570eeb4837b713108619d762a01 (patch)
treee94e57a02e09540ba97e078486485d7558be0592 /src/control
parentMerge branch 'master' of git://github.com/GTAmodding/re3 into erorcun (diff)
downloadre3-59671fab03703570eeb4837b713108619d762a01.tar
re3-59671fab03703570eeb4837b713108619d762a01.tar.gz
re3-59671fab03703570eeb4837b713108619d762a01.tar.bz2
re3-59671fab03703570eeb4837b713108619d762a01.tar.lz
re3-59671fab03703570eeb4837b713108619d762a01.tar.xz
re3-59671fab03703570eeb4837b713108619d762a01.tar.zst
re3-59671fab03703570eeb4837b713108619d762a01.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Darkel.cpp2
-rw-r--r--src/control/Darkel.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/control/Darkel.cpp b/src/control/Darkel.cpp
index 678fcd45..ad8d1176 100644
--- a/src/control/Darkel.cpp
+++ b/src/control/Darkel.cpp
@@ -141,7 +141,7 @@ void CDarkel::RegisterKillByPlayer(CPed *victim, eWeaponType weapontype, bool he
}
#endif
-void CDarkel::RegisterKillNotByPlayer()
+void CDarkel::RegisterKillNotByPlayer(CPed* victim, eWeaponType weapontype)
{
++CStats::NumberKillFrenziesPassed;
}
diff --git a/src/control/Darkel.h b/src/control/Darkel.h
index 35d849d2..77a14bb8 100644
--- a/src/control/Darkel.h
+++ b/src/control/Darkel.h
@@ -42,7 +42,7 @@ public:
static eKillFrenzyStatus ReadStatus();
static void RegisterCarBlownUpByPlayer(CVehicle *vehicle);
static void RegisterKillByPlayer(CPed *victim, eWeaponType weapontype, bool headshot = false);
- static void RegisterKillNotByPlayer();
+ static void RegisterKillNotByPlayer(CPed* victim, eWeaponType weapontype);
static void ResetModelsKilledByPlayer();
static void ResetOnPlayerDeath();
static void StartFrenzy(eWeaponType weaponType, int32 time, int16 kill, int32 modelId0, wchar *text, int32 modelId2, int32 modelId3, int32 modelId4, bool standardSound, bool needHeadShot);