summaryrefslogtreecommitdiff
path: root/src/tree_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-09-26 12:30:30 +0000
committerrubidium <rubidium@openttd.org>2009-09-26 12:30:30 +0000
commit06040213b4f987d98d418cd38f6a2464b7832a55 (patch)
tree264ac87985809bafef180ecac3de6fa62bc2bc9d /src/tree_cmd.cpp
parent2b61d49f3089f3fe8f262d5f148d93422df765e2 (diff)
downloadopenttd-06040213b4f987d98d418cd38f6a2464b7832a55.tar.xz
(svn r17642) -Change: make a comment more clear (Eddi)
Diffstat (limited to 'src/tree_cmd.cpp')
-rw-r--r--src/tree_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tree_cmd.cpp b/src/tree_cmd.cpp
index 4f2023a74..3720be8c0 100644
--- a/src/tree_cmd.cpp
+++ b/src/tree_cmd.cpp
@@ -635,7 +635,7 @@ static void TileLoop_Trees(TileIndex tile)
uint treeCounter = GetTreeCounter(tile);
- /* Handle growth of grass at every 8th processings, like it's done for grass */
+ /* Handle growth of grass (under trees/on MP_TREES tiles) at every 8th processings, like it's done for grass on MP_CLEAR tiles. */
if ((treeCounter & 7) == 7 && GetTreeGround(tile) == TREE_GROUND_GRASS) {
uint density = GetTreeDensity(tile);
if (density < 3) {