Changeset - r21759:581782f1201e
[Not reviewed]
master
0 1 0
rubidium - 10 years ago 2014-09-21 17:37:30
rubidium@openttd.org
(svn r26902) -Fix (r26900): erroneous spaces instead of tabs
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/terraform_cmd.cpp
Show inline comments
 
@@ -395,14 +395,14 @@ CommandCost CmdTerraformLand(TileIndex t
 
					for (int cx = (int)MapMaxX(); cx <= (int)MapMaxX() + height + 1; cx++) {
 
						for (int cy = (int)MapMaxY(); cy <= (int)MapMaxY() + height + 1; cy++) {
 
							if (((int)MapMaxX() - cx) + ((int)MapMaxY() - cy) >= -height - 2) {
 
								MarkTileDirtyByTileOutsideMap(cx, cy);
 
							}
 
						}
 
				  }
 
			  }
 
					}
 
				}
 
			}
 
		}
 

	
 
		if (c != NULL) c->terraform_limit -= ts.tile_to_new_height.size() << 16;
 
	}
 
	return total_cost;
0 comments (0 inline, 0 general)