# HG changeset patch # User Wuzzy # Date 1547146038 -3600 # Node ID adf3e7d94db0ae79e19222e5438c15d5b55e7cc7 # Parent 3105881d58404a5daff0f09d4f9d35ae13e3ad34 Don't say "first blood" in games with only 1 clan diff -r 3105881d5840 -r adf3e7d94db0 hedgewars/uStats.pas --- a/hedgewars/uStats.pas Thu Jan 10 19:21:08 2019 +0100 +++ b/hedgewars/uStats.pas Thu Jan 10 19:47:18 2019 +0100 @@ -255,7 +255,7 @@ killsCheck:= 0; // First blood (first damage, poison or kill) - if (not FirstBlood) and ((DamageTotal > 0) or (KillsTotal > 0) or (PoisonTotal > 0)) and ((CurrentHedgehog^.stats.DamageGiven = DamageTotal) and (CurrentHedgehog^.stats.StepKills = KillsTotal) and (PoisonTotal = PoisonTurn + PoisonClan)) then + if (not FirstBlood) and (ClansCount > 1) and ((DamageTotal > 0) or (KillsTotal > 0) or (PoisonTotal > 0)) and ((CurrentHedgehog^.stats.DamageGiven = DamageTotal) and (CurrentHedgehog^.stats.StepKills = KillsTotal) and (PoisonTotal = PoisonTurn + PoisonClan)) then begin FirstBlood:= true; AddVoice(sndFirstBlood, CurrentTeam^.voicepack);