diff --git a/dat/start.xml b/dat/start.xml index e3dd9c2..9a67703 100644 --- a/dat/start.xml +++ b/dat/start.xml @@ -4,7 +4,7 @@ <ship>Lancer</ship> <credits> <low>500</low> - <high>1500</high> + <high>15000</high> </credits> <system> <name>KonoSys</name> diff --git a/src/pilot.h b/src/pilot.h index c4b3cda..841292f 100644 --- a/src/pilot.h +++ b/src/pilot.h @@ -43,8 +43,8 @@ #define pilot_isDisabled(p) ((p)->flags & PILOT_DISABLED) typedef struct PilotOutfit_ { - Outfit* outfit; // Associated outfit. - unsigned int quantity; // Number of outfits of this type that the pilot has. + Outfit* outfit; // Associated outfit. + int quantity; // Number of outfits of this type that the pilot has. unsigned int timer; // Used to store last used weapon time. } PilotOutfit;