diff -r 3c40754f6cfe -r 7b66a2e9b368 hedgewars/uStats.pas --- a/hedgewars/uStats.pas Sat Oct 27 13:27:45 2018 +0200 +++ b/hedgewars/uStats.pas Sat Oct 27 15:13:49 2018 +0200 @@ -100,7 +100,6 @@ ////////////////////////// inc(Attacker^.stats.StepDamageGiven, Damage); -inc(Attacker^.stats.DamageGiven, Damage); inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage); if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage); @@ -221,7 +220,7 @@ begin AddVoice(sndStupid, PreviousTeam^.voicepack); // Message for hurting itself only (not drowning) - if (CurrentHedgehog^.stats.DamageGiven = CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then + if (CurrentHedgehog^.stats.StepDamageGiven = CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then AddCaption(FormatA(GetEventString(eidHurtSelf), s), capcolDefault, capgrpMessage); end