hedgewars/uAmmos.pas
changeset 941 b5222ddafe1f
parent 927 2c1675344a6f
child 971 d2c49b730771
--- a/hedgewars/uAmmos.pas	Sat May 17 22:21:45 2008 +0000
+++ b/hedgewars/uAmmos.pas	Sun May 18 10:54:43 2008 +0000
@@ -107,7 +107,12 @@
         if hhammo^[slot, ami].Count > 0 then
            ammos[hhammo^[slot, ami].AmmoType]:= hhammo^[slot, ami].Count;
 
-if ammos[ammo] <> AMMO_INFINITE then inc(ammos[ammo], Ammoz[ammo].NumberInCase);
+if ammos[ammo] <> AMMO_INFINITE then
+   begin
+   inc(ammos[ammo], Ammoz[ammo].NumberInCase);
+   if ammos[ammo] > AMMO_INFINITE then ammos[ammo]:= AMMO_INFINITE
+   end;
+
 FillAmmoStore(hhammo, ammos)
 end;
 
@@ -151,7 +156,8 @@
 while (ami <= cMaxSlotAmmoIndex) do
       begin
       with Hedgehog.Ammo^[Slot, ami] do
-            if (AmmoType = Ammo) and (Count > 0) then exit(true);
+            if (AmmoType = Ammo) then
+               exit((Count > 0) and (Hedgehog.Team^.Clan^.TurnNumber > Ammoz[AmmoType].SkipTurns));
       inc(ami)
       end;
 HHHasAmmo:= false
@@ -164,7 +170,7 @@
 
 with Hedgehog do
      begin
-     if (Ammo^[CurSlot, CurAmmo].Count = 0)then
+     if (Ammo^[CurSlot, CurAmmo].Count = 0) then
         begin
         CurAmmo:= 0;
         CurSlot:= 0;