From 8b3e27889784eaae5989ad0271c80b05b94edf46 Mon Sep 17 00:00:00 2001 From: truelight Date: Sun, 11 Nov 2007 12:34:44 +0000 Subject: (svn r11407) -Fix: do not allow building of tram-tracks when they are not available (SmatZ) --- src/station_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/station_cmd.cpp') diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index dcf3f1f53..edb8876b4 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1318,7 +1318,7 @@ CommandCost CmdBuildRoadStop(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) bool town_owned_road = build_over_road && IsTileOwner(tile, OWNER_TOWN); RoadTypes rts = (RoadTypes)GB(p2, 2, 3); - if (rts == ROADTYPES_NONE || HASBIT(rts, ROADTYPE_HWAY)) return CMD_ERROR; + if (!AreValidRoadTypes(rts) || !HasRoadTypesAvail(_current_player, rts)) return CMD_ERROR; /* Trams only have drive through stops */ if (!is_drive_through && HASBIT(rts, ROADTYPE_TRAM)) return CMD_ERROR; -- cgit v1.2.3-54-g00ecf