diff options
author | rubidium <rubidium@openttd.org> | 2010-04-25 16:34:53 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-04-25 16:34:53 +0000 |
commit | bf638801c0770de81ab0a9916f979cbca6058468 (patch) | |
tree | 95439772cf21433fd1beb8f77117cd2dcebd6d62 /src | |
parent | c72e2dde603fe9ba0d57d2e6f259f32398b75a15 (diff) | |
download | openttd-bf638801c0770de81ab0a9916f979cbca6058468.tar.xz |
(svn r19724) -Fix [FS#3792]: random tree type did not build all sub-tropic trees (Krille)
Diffstat (limited to 'src')
-rw-r--r-- | src/tree_map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tree_map.h b/src/tree_map.h index a7282cadc..ddda6ac54 100644 --- a/src/tree_map.h +++ b/src/tree_map.h @@ -41,10 +41,10 @@ enum TreeType { * got two types of area, one for normal trees and one only for cacti. */ enum { - TREE_COUNT_TEMPERATE = TREE_SUB_ARCTIC - TREE_TEMPERATE, ///< number of treetypes on a temperate map - TREE_COUNT_SUB_ARCTIC = TREE_RAINFOREST - TREE_SUB_ARCTIC, ///< number of treetypes on a sub arctic map - TREE_COUNT_RAINFOREST = TREE_CACTUS - TREE_RAINFOREST, ///< number of treetypes for the 'green part' of a sub tropic map - TREE_COUNT_SUB_TROPICAL = TREE_SUB_TROPICAL - TREE_CACTUS, ///< number of treetypes for the 'desert part' of a sub tropic map + TREE_COUNT_TEMPERATE = TREE_SUB_ARCTIC - TREE_TEMPERATE, ///< number of treetypes on a temperate map + TREE_COUNT_SUB_ARCTIC = TREE_RAINFOREST - TREE_SUB_ARCTIC, ///< number of treetypes on a sub arctic map + TREE_COUNT_RAINFOREST = TREE_CACTUS - TREE_RAINFOREST, ///< number of treetypes for the 'rainforrest part' of a sub-tropic map + TREE_COUNT_SUB_TROPICAL = TREE_TOYLAND - TREE_SUB_TROPICAL, ///< number of treetypes for the 'sub-tropic part' of a sub-tropic map TREE_COUNT_TOYLAND = 9 ///< number of treetypes on a toyland map }; |