(svn r19276) -Fix [FS#3649](r19229): Newly built road stops were not always repainted.

This commit is contained in:
terkhen 2010-02-27 16:27:15 +00:00
parent b8f811c7ff
commit d9b2bf78c5
1 changed files with 2 additions and 0 deletions

View File

@ -1760,6 +1760,8 @@ CommandCost CmdBuildRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, uin
} else {
MakeRoadStop(cur_tile, st->owner, st->index, rs_type, rts, ddir);
}
MarkTileDirtyByTile(cur_tile);
}
}