From 8dcbf2675b784ac3a060c046c10dc393c52f2772 Mon Sep 17 00:00:00 2001 From: truelight Date: Mon, 27 Dec 2004 18:18:44 +0000 Subject: (svn r1283) -Add: AutoRenew is now a client-side patch instead of a game-side patch Note: this is the first commit that breaks compatibility with 0.3.5! -Fix: Bufferoverflow with autorenew_money. It is now a 32-bit integer. --- aircraft_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'aircraft_cmd.c') diff --git a/aircraft_cmd.c b/aircraft_cmd.c index 7d0c5eb6e..300e2efb3 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -100,7 +100,7 @@ static bool AllocateVehicles(Vehicle **vl, int num) return success; } -static int32 EstimateAircraftCost(uint16 engine_type) +int32 EstimateAircraftCost(uint16 engine_type) { return AircraftVehInfo(engine_type)->base_cost * (_price.aircraft_base>>3)>>5; } @@ -1157,7 +1157,7 @@ static void AircraftEnterHangar(Vehicle *v) ServiceAircraft(v); - MaybeRenewVehicle(v, EstimateAircraftCost(v->engine_type)); + MaybeRenewVehicle(v); TriggerVehicle(v, VEHICLE_TRIGGER_DEPOT); -- cgit v1.2.3-54-g00ecf