summaryrefslogtreecommitdiff
path: root/src/waypoint.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-01-15 15:00:01 +0000
committersmatz <smatz@openttd.org>2008-01-15 15:00:01 +0000
commit81cad58c6883ad47f005a7671fd712c60905164f (patch)
tree3fac3a5889143b62cffcafd37b2c29c84ae62f39 /src/waypoint.cpp
parentc954ce1b335e37b25bf604a529c57f5043f3b7d9 (diff)
downloadopenttd-81cad58c6883ad47f005a7671fd712c60905164f.tar.xz
(svn r11864) -Codechange: pass owner whose signals we will update instead of complex detection later
Diffstat (limited to 'src/waypoint.cpp')
-rw-r--r--src/waypoint.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/waypoint.cpp b/src/waypoint.cpp
index bf2c7c06e..1af10cb07 100644
--- a/src/waypoint.cpp
+++ b/src/waypoint.cpp
@@ -286,6 +286,7 @@ CommandCost RemoveTrainWaypoint(TileIndex tile, uint32 flags, bool justremove)
if (flags & DC_EXEC) {
Track track = GetRailWaypointTrack(tile);
+ Owner owner = GetTileOwner(tile); // cannot use _current_player because of possible floods
wp = GetWaypointByTile(tile);
wp->deleted = 30; // let it live for this many days before we do the actual deletion.
@@ -296,7 +297,7 @@ CommandCost RemoveTrainWaypoint(TileIndex tile, uint32 flags, bool justremove)
MarkTileDirtyByTile(tile);
} else {
DoClearSquare(tile);
- SetSignalsOnBothDir(tile, track);
+ SetSignalsOnBothDir(tile, track, owner);
}
YapfNotifyTrackLayoutChange(tile, track);
}