summaryrefslogtreecommitdiff
path: root/npf.c
diff options
context:
space:
mode:
authorhackykid <hackykid@openttd.org>2005-07-22 08:40:19 +0000
committerhackykid <hackykid@openttd.org>2005-07-22 08:40:19 +0000
commitaed6f08640c3865ebb48bc6bd151d747262ec9f0 (patch)
treea3caf79bf281e825af72f9b3c43114b86409cb9a /npf.c
parent54cbd0182548d7bf1856790ac871585a16806824 (diff)
downloadopenttd-aed6f08640c3865ebb48bc6bd151d747262ec9f0.tar.xz
(svn r2674) - CodeChange: [pbs] Generalise the PSBISPbsDepot function so it can check if an arbitrary junction is a pbs junction. Preparations for making pbs more safe.
Diffstat (limited to 'npf.c')
-rw-r--r--npf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/npf.c b/npf.c
index 6bbaefcf2..66d370136 100644
--- a/npf.c
+++ b/npf.c
@@ -525,7 +525,7 @@ static int32 NPFRailPathCost(AyStar* as, AyStarNode* current, OpenListNode* pare
if (NPFGetFlag(current, NPF_FLAG_PBS_BLOCKED)) {
cost += 1000;
}
- if (PBSIsPbsDepot(tile)) {
+ if (PBSIsPbsSegment(tile, ReverseTrackdir(trackdir))) {
NPFSetFlag(current, NPF_FLAG_PBS_EXIT, true);
NPFSetFlag(current, NPF_FLAG_SEEN_SIGNAL, true);
}