diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1438,7 +1438,6 @@ CommandCost CmdBuildRoadStop(TileIndex t if (Company::IsValidID(_current_company)) { SetBit(st->town->have_ratings, _current_company); } - st->sign.width_1 = 0; } } @@ -1795,7 +1794,6 @@ CommandCost CmdBuildAirport(TileIndex ti if (Company::IsValidID(_current_company)) { SetBit(st->town->have_ratings, _current_company); } - st->sign.width_1 = 0; } } @@ -1931,7 +1929,6 @@ CommandCost CmdBuildBuoy(TileIndex tile, if (Company::IsValidID(_current_company)) { SetBit(st->town->have_ratings, _current_company); } - st->sign.width_1 = 0; st->dock_tile = tile; st->facilities |= FACIL_DOCK; /* Buoys are marked in the Station struct by this flag. Yes, it is this @@ -2947,7 +2944,6 @@ void BuildOilRig(TileIndex tile) Station *st = new Station(tile); st->town = ClosestTownFromTile(tile, UINT_MAX); - st->sign.width_1 = 0; st->string_id = GenerateStationName(st, tile, STATIONNAMING_OILRIG);