From aeeda8d7baaffd1150ec1a0aade879cc8591321e Mon Sep 17 00:00:00 2001 From: meep-eep Date: Tue, 15 Jun 2004 13:48:06 +0000 Subject: [PATCH] Forgot about the 10 fuel that can be present in the ship apart from in the fuel modules. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1382 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/debug.c b/sc2/src/sc2code/debug.c index b4fe4b968..58ccffb20 100644 --- a/sc2/src/sc2code/debug.c +++ b/sc2/src/sc2code/debug.c @@ -237,7 +237,7 @@ equipShip (void) assert (i <= NUM_MODULE_SLOTS); // Fill the fuel and crew compartments to the maximum. - GLOBAL_SIS (FuelOnBoard) = 0; + GLOBAL_SIS (FuelOnBoard) = FUEL_RESERVE; GLOBAL_SIS (CrewEnlisted) = 0; for (i = 0; i < NUM_MODULE_SLOTS; i++) {