(svn r3532) Revert r3467, was total nonesense, my fault

This commit is contained in:
tron 2006-02-04 11:53:31 +00:00
parent 05d7d046c7
commit b36f89bc51
1 changed files with 3 additions and 0 deletions

View File

@ -493,6 +493,8 @@ static void TileLoop_Trees(TileIndex tile)
/* fall through */
case 2: { /* add a neighbouring tree */
byte m3 = _m[tile].m3;
tile += ToTileIndexDiff(_tileloop_trees_dir[Random() & 7]);
if (!IsTileType(tile, MP_CLEAR)) return;
@ -508,6 +510,7 @@ static void TileLoop_Trees(TileIndex tile)
default: return;
}
_m[tile].m3 = m3;
_m[tile].m4 = 0;
SetTileType(tile, MP_TREES);