diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index c2de53bdec..57108c0826 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2003,7 +2003,7 @@ CommandCost CmdRemoveRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, ui /* Update company infrastructure counts. */ RoadType rt; FOR_EACH_SET_ROADTYPE(rt, rts) { - Company *c = Company::GetIfValid(GetRoadOwner(tile, rt)); + Company *c = Company::GetIfValid(GetRoadOwner(cur_tile, rt)); if (c != NULL) { c->infrastructure.road[rt] += CountBits(road_bits); DirtyCompanyInfrastructureWindows(c->index);