# HG changeset patch # User unc0rr # Date 1245484203 0 # Node ID fc082baf448ceee2573f695b5f3cf7e1c1939f64 # Parent 9e64d9f1bcab047239664c143636b7ec0dfc215c Don't show enemy's number of ammo diff -r 9e64d9f1bcab -r fc082baf448c hedgewars/uAmmos.pas --- a/hedgewars/uAmmos.pas Sat Jun 20 07:45:05 2009 +0000 +++ b/hedgewars/uAmmos.pas Sat Jun 20 07:50:03 2009 +0000 @@ -236,7 +236,7 @@ with Ammo^[CurSlot, CurAmmo] do begin s:= trammo[Ammoz[AmmoType].NameId]; - if Count <> AMMO_INFINITE then + if (Count <> AMMO_INFINITE) and not (Hedgehog.Team^.ExtDriven or (Hedgehog.BotLevel > 0)) then s:= s + ' (' + IntToStr(Count) + ')'; if (Propz and ammoprop_Timerable) <> 0 then s:= s + ', ' + inttostr(Timer div 1000) + ' ' + trammo[sidSeconds];