From c4a88ce0225a57243a79e28d133c2ecd884bee68 Mon Sep 17 00:00:00 2001 From: yexo Date: Thu, 18 Mar 2010 21:02:20 +0000 Subject: (svn r19455) -Codechange: split all airport information in Station to a seperate class --- src/order_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/order_cmd.cpp') diff --git a/src/order_cmd.cpp b/src/order_cmd.cpp index bd84015d2..953a9d980 100644 --- a/src/order_cmd.cpp +++ b/src/order_cmd.cpp @@ -535,7 +535,7 @@ CommandCost CmdInsertOrder(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3 ret.SetGlobalErrorMessage(); if (ret.Failed()) return ret; - if (!CanVehicleUseStation(v, st) || st->GetAirportSpec()->nof_depots == 0) { + if (!CanVehicleUseStation(v, st) || st->airport.GetSpec()->nof_depots == 0) { return CMD_ERROR; } } else { -- cgit v1.2.3-54-g00ecf