diff options
author | truelight <truelight@openttd.org> | 2005-02-04 14:05:28 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-02-04 14:05:28 +0000 |
commit | c7eda1b15e7f10a405f398dd230cb8ccff8164b8 (patch) | |
tree | 56b790da8c472e292464ea4d9f0daa9d05f0fe61 | |
parent | 40323bbce21cf9b481c117cdc513abf2bf1148bd (diff) | |
download | openttd-c7eda1b15e7f10a405f398dd230cb8ccff8164b8.tar.xz |
(svn r1785) -Fix: space-correctness in road_cmd.c, and one wrong line from last
commit (tnx to DarkVater)
-rw-r--r-- | road_cmd.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/road_cmd.c b/road_cmd.c index 4655b45f2..026b5487e 100644 --- a/road_cmd.c +++ b/road_cmd.c @@ -149,7 +149,7 @@ int32 CmdRemoveRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2) FindLandscapeHeight(&ti, x, y); tile = ti.tile; - if(_map_owner[tile] == OWNER_TOWN && _game_mode != GM_EDITOR) + if (_map_owner[tile] == OWNER_TOWN && _game_mode != GM_EDITOR) t = GetTown(_map2[tile]); // needed for town rating penalty else t = NULL; @@ -207,7 +207,7 @@ int32 CmdRemoveRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2) // check if you're allowed to remove the street owned by a town // removal allowance depends on difficulty setting - if(_map_owner[tile] == OWNER_TOWN && _game_mode != GM_EDITOR) { + if (_map_owner[tile] == OWNER_TOWN && _game_mode != GM_EDITOR) { if (!CheckforTownRating(tile, flags, t, ROAD_REMOVE)) return CMD_ERROR; } @@ -215,7 +215,7 @@ int32 CmdRemoveRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2) if (flags & DC_EXEC) { // checks if the owner is town than decrease town rating by 50 until you have // a "Poor" town rating - if(_map_owner[tile] == OWNER_TOWN && _game_mode != GM_EDITOR) + if (_map_owner[tile] == OWNER_TOWN && _game_mode != GM_EDITOR) ChangeTownRating(t, -_road_remove_cost[(byte)edge_road], RATING_ROAD_MINIMUM); _map5[tile] ^= c; @@ -967,10 +967,7 @@ static void TileLoop_Road(uint tile) return; if (((_map3_hi[tile] & 0x70) >> 4) < 6) { - if(_map_owner[tile] == OWNER_TOWN) - t = GetTown(_map2[tile]); - else - t = ClosestTownFromTile(tile, (uint)-1); + t = ClosestTownFromTile(tile, (uint)-1); grp = 0; if (t != NULL) { |