From 546c34f2e5e6b130cdbc9201fe465548c1e54ee5 Mon Sep 17 00:00:00 2001 From: bjarni Date: Sun, 31 Jul 2005 13:08:08 +0000 Subject: (svn r2764) -Feature: Clone vehicles -This allows a player to clone an excisting vehicle of his own -[fix]: this uncovered an excisting bug in CmdBuildRailVehicle() where depots could build trains of the wrong track type. This is fixed -Thanks to Celestar for drawing the sprites and _luca_ for including them in openttd.grf --- aircraft_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aircraft_cmd.c') diff --git a/aircraft_cmd.c b/aircraft_cmd.c index 6642ba09d..aba653d36 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -332,7 +332,7 @@ bool IsAircraftHangarTile(TileIndex tile) (_m[tile].m5 == 32 || _m[tile].m5 == 65 || _m[tile].m5 == 86); } -static bool CheckStoppedInHangar(Vehicle *v) +bool CheckStoppedInHangar(Vehicle *v) { if (!(v->vehstatus & VS_STOPPED) || !IsAircraftHangarTile(v->tile)) { _error_message = STR_A01B_AIRCRAFT_MUST_BE_STOPPED; -- cgit v1.2.3-54-g00ecf