[Fix] No longet get negative outfit quantity.

This commit is contained in:
Allanis 2013-03-08 14:26:56 +00:00
parent c71b92f5d2
commit fc5535f0f8
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
<ship>Lancer</ship>
<credits>
<low>500</low>
<high>1500</high>
<high>15000</high>
</credits>
<system>
<name>KonoSys</name>

View File

@ -44,7 +44,7 @@
typedef struct PilotOutfit_ {
Outfit* outfit; // Associated outfit.
unsigned int quantity; // Number of outfits of this type that the pilot has.
int quantity; // Number of outfits of this type that the pilot has.
unsigned int timer; // Used to store last used weapon time.
} PilotOutfit;