diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Entities/Player.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Entities/Player.cpp b/src/Entities/Player.cpp index c5a1e0f95..270b09c24 100644 --- a/src/Entities/Player.cpp +++ b/src/Entities/Player.cpp @@ -852,7 +852,10 @@ bool cPlayer::DoTakeDamage(TakeDamageInfo & a_TDI) AddFoodExhaustion(0.3f); SendHealth(); - NotifyFriendlyWolves(a_TDI.Attacker); + if (a_TDI.Attacker != nullptr) + { + NotifyFriendlyWolves(a_TDI.Attacker); + } m_Stats.AddValue(statDamageTaken, FloorC<StatValue>(a_TDI.FinalDamage * 10 + 0.5)); return true; } @@ -865,6 +868,7 @@ bool cPlayer::DoTakeDamage(TakeDamageInfo & a_TDI) void cPlayer::NotifyFriendlyWolves(cEntity * a_Opponent) { + ASSERT(a_Opponent != nullptr); class LookForWolves : public cEntityCallback { public: |