summaryrefslogtreecommitdiff
path: root/src/airport.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/airport.h')
-rw-r--r--src/airport.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/airport.h b/src/airport.h
index 2ee8d9ff5..20c8c8787 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -63,6 +63,7 @@ struct AirportSpec {
static AirportSpec *Get(byte type)
{
+ if (type == AT_OILRIG) return &oilrig;
assert(type < NUM_AIRPORTS);
extern AirportSpec _origin_airport_specs[NUM_AIRPORTS];
return &_origin_airport_specs[type];
@@ -71,6 +72,7 @@ struct AirportSpec {
bool IsAvailable() const;
static AirportSpec dummy;
+ static AirportSpec oilrig;
};