equal
deleted
inserted
replaced
691 |
691 |
692 if cnt = 0 then |
692 if cnt = 0 then |
693 cnt:= Ammoz[ammo].NumberInCase; |
693 cnt:= Ammoz[ammo].NumberInCase; |
694 |
694 |
695 if (ammo = amNothing) or (cnt = 0) then |
695 if (ammo = amNothing) or (cnt = 0) then |
696 s:= ansistring(trmsg[sidEmptyCrate]) |
696 s:= trmsg[sidEmptyCrate] |
697 else if cnt >= AMMO_INFINITE then |
697 else if cnt >= AMMO_INFINITE then |
698 s:= name + ansistring(' (+∞)') |
698 s:= name + ansistring(' (+∞)') |
699 else |
699 else |
700 s:= name + ansistring(' (+' + IntToStr(cnt) + ')'); |
700 s:= name + ansistring(' (+' + IntToStr(cnt) + ')'); |
701 |
701 |