summaryrefslogtreecommitdiff
path: root/src/npf.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-07-24 11:15:11 +0000
committerrubidium <rubidium@openttd.org>2009-07-24 11:15:11 +0000
commit2c6b5237f68b1ce444f35eef6e31e7c0ff49d7cc (patch)
treea327b740ebd6f71336780c857326fe41fbe56683 /src/npf.cpp
parent07447a1766145231e97b39993ec55d01e9be7bca (diff)
downloadopenttd-2c6b5237f68b1ce444f35eef6e31e7c0ff49d7cc.tar.xz
(svn r16938) -Codechange: introduce helper function to tell whether a tile is either a rail station or rail waypoint tile
Diffstat (limited to 'src/npf.cpp')
-rw-r--r--src/npf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/npf.cpp b/src/npf.cpp
index 34a2a9d55..dbdd93ec4 100644
--- a/src/npf.cpp
+++ b/src/npf.cpp
@@ -550,7 +550,7 @@ static void NPFSaveTargetData(AyStar *as, OpenListNode *current)
static bool CanEnterTileOwnerCheck(Owner owner, TileIndex tile, DiagDirection enterdir)
{
if (IsTileType(tile, MP_RAILWAY) || // Rail tile (also rail depot)
- IsRailwayStationTile(tile) || // Rail station tile
+ HasStationTileRail(tile) || // Rail station tile/waypoint
IsRoadDepotTile(tile) || // Road depot tile
IsStandardRoadStopTile(tile)) { // Road station tile (but not drive-through stops)
return IsTileOwner(tile, owner); // You need to own these tiles entirely to use them