From af70b49bf737b03d83e239f5af1fdbc83c3674dc Mon Sep 17 00:00:00 2001 From: tron Date: Thu, 5 Jan 2006 21:35:54 +0000 Subject: (svn r3367) Unify the 4 distinct CMD_CHANGE_{AIRCRAFT,ROADVEH,SHIP,TRAIN}_SERVICE_INT commands into one CMD_CHANGE_SERVICE_INT command. As side effect this is a -Fix: The default AI tried to change the service intervals of vehicles via the CMD_CHANGE_TRAIN_SERVICE_INT command - regardless of the type of the vehicle - which of course failed for non-trains --- aircraft_cmd.c | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'aircraft_cmd.c') diff --git a/aircraft_cmd.c b/aircraft_cmd.c index a6fd64f53..710ca24d5 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -452,29 +452,6 @@ int32 CmdSendAircraftToHangar(int x, int y, uint32 flags, uint32 p1, uint32 p2) return 0; } -/** Change the service interval for aircraft. - * @param x,y unused - * @param p1 vehicle ID that is being service-interval-changed - * @param p2 new service interval - */ -int32 CmdChangeAircraftServiceInt(int x, int y, uint32 flags, uint32 p1, uint32 p2) -{ - Vehicle *v; - uint16 serv_int = GetServiceIntervalClamped(p2); /* Double check the service interval from the user-input */ - - if (serv_int != p2 || !IsVehicleIndex(p1)) return CMD_ERROR; - - v = GetVehicle(p1); - - if (v->type != VEH_Aircraft || !CheckOwnership(v->owner)) return CMD_ERROR; - - if (flags & DC_EXEC) { - v->service_interval = serv_int; - InvalidateWindowWidget(WC_VEHICLE_DETAILS, v->index, 7); - } - - return 0; -} /** Refits an aircraft to the specified cargo type. * @param x,y unused -- cgit v1.2.3-70-g09d2