# HG changeset patch # User nemo # Date 1267378359 0 # Node ID 518e6e66239d5044a21eabb6c915f65054184d65 # Parent a2ca1f7fe6c54d72778e8efb78349968cdf31b39 Tweak condition for hiding ammo diff -r a2ca1f7fe6c5 -r 518e6e66239d hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Sun Feb 28 17:20:49 2010 +0000 +++ b/hedgewars/uWorld.pas Sun Feb 28 17:32:39 2010 +0000 @@ -138,7 +138,7 @@ Slot, Pos: LongInt; Ammo: PHHAmmo; begin -if (TurnTimeLeft = 0) or (((CurAmmoGear = nil) or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) = 0)) and hideAmmoMenu) then bShowAmmoMenu:= false; +if (TurnTimeLeft = 0) or (not CurrentTeam^.ExtDriven and (((CurAmmoGear = nil) or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) = 0)) and hideAmmoMenu)) then bShowAmmoMenu:= false; if bShowAmmoMenu then begin FollowGear:= nil;