diff options
Diffstat (limited to 'src/newgrf_station.cpp')
-rw-r--r-- | src/newgrf_station.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp index 3cd21e985..032e2f5e3 100644 --- a/src/newgrf_station.cpp +++ b/src/newgrf_station.cpp @@ -452,7 +452,7 @@ static uint32 StationGetVariable(const ResolverObject *object, byte variable, by case 0x43: return st->owner; // Station owner case 0x44: if (IsRailWaypointTile(tile)) { - return HasDepotWaypointReservation(tile) ? 7 : 4; + return HasDepotReservation(tile) ? 7 : 4; } else { return HasStationReservation(tile) ? 7 : 4; // PBS status } |