diff -r a4a5ec6c61d4 -r ac6f6c95c23f hedgewars/uStats.pas --- a/hedgewars/uStats.pas Thu Apr 24 15:03:57 2008 +0000 +++ b/hedgewars/uStats.pas Thu Apr 24 15:19:33 2008 +0000 @@ -71,9 +71,12 @@ if DamageTotal > DamageClan then PlaySound(sndNutter, false) else - PlaySound(sndSameTeam, false) + if random(2) = 0 then + PlaySound(sndSameTeam, false) + else + PlaySound(sndTraitor, false) -else if DamageGiven <> 0 then +else if DamageGiven <> 0 then PlaySound(sndRegret, false) else if AmmoDamagingUsed then PlaySound(sndMissed, false);