| 733 | } |
| 734 | |
| 735 | static void GetTileDesc_Trees(TileIndex tile, TileDesc &td) |
| 736 | { |
| 737 | TreeType tt = GetTreeType(tile); |
| 738 | |
| 739 | if (IsInsideMM(tt, TREE_RAINFOREST, TREE_CACTUS)) { |
| 740 | td.str = STR_LAI_TREE_NAME_RAINFOREST; |
| 741 | } else { |
| 742 | td.str = tt == TREE_CACTUS ? STR_LAI_TREE_NAME_CACTUS_PLANTS : STR_LAI_TREE_NAME_TREES; |
| 743 | } |
| 744 | |
| 745 | td.owner[0] = GetTileOwner(tile); |
| 746 | } |
| 747 | |
| 748 | static void TileLoopTreesDesert(TileIndex tile) |
| 749 | { |
nothing calls this directly
no test coverage detected