(svn r1146) -Fix: You can no longer change waypoints whom are owned by somebody else

This commit is contained in:
truelight 2004-12-17 17:06:20 +00:00
parent ef89eb019a
commit 9d05289147
1 changed files with 7 additions and 0 deletions

View File

@ -376,6 +376,13 @@ void ShowRenameSignWindow(SignStruct *ss)
void ShowRenameWaypointWindow(Waypoint *cp)
{
int id = cp - _waypoints;
/* Are we allowed to change the name of the waypoint? */
if (!CheckTileOwnership(cp->xy)) {
ShowErrorMessage(_error_message, STR_CANT_CHANGE_WAYPOINT_NAME, GET_TILE_X(cp->xy) * 16, GET_TILE_Y(cp->xy) * 16);
return;
}
_rename_id = id;
_rename_what = 1;
SetDParam(0, id);