(svn r14135) -Codechange: Add owner to waypoints. Previously, it was guessed from rail underneath it.

This commit is contained in:
belugas
2008-08-23 02:15:46 +00:00
parent f625ecbeba
commit 7dc212edeb
7 changed files with 128 additions and 116 deletions

View File

@@ -2516,6 +2516,15 @@ bool AfterLoadGame()
}
}
}
/* Give owners to waypoints, based on rail tracks it is sitting on.
* If none is available, specify OWNER_NONE */
Waypoint *wp;
Owner owner;
FOR_ALL_WAYPOINTS(wp) {
owner = GetTileOwner(wp->xy);
wp->owner = IsValidPlayerID(owner) ? owner : OWNER_NONE;
}
}
GamelogPrintDebug(1);