From 81cad58c6883ad47f005a7671fd712c60905164f Mon Sep 17 00:00:00 2001 From: smatz Date: Tue, 15 Jan 2008 15:00:01 +0000 Subject: (svn r11864) -Codechange: pass owner whose signals we will update instead of complex detection later --- src/waypoint.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/waypoint.cpp') 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); } -- cgit v1.2.3-54-g00ecf