(svn r17075) -Codechange: rename ~750 strings to be more uniform with their relatives

This commit is contained in:
rubidium
2009-08-05 17:59:21 +00:00
parent a79707357b
commit d61be2637e
148 changed files with 34207 additions and 34207 deletions

View File

@@ -549,9 +549,9 @@ static void GetTileDesc_Trees(TileIndex tile, TileDesc *td)
TreeType tt = GetTreeType(tile);
if (IsInsideMM(tt, TREE_RAINFOREST, TREE_CACTUS)) {
td->str = STR_TREE_NAME_RAINFOREST;
td->str = STR_LAI_TREE_NAME_RAINFOREST;
} else {
td->str = tt == TREE_CACTUS ? STR_TREE_NAME_CACTUS_PLANTS : STR_TREE_NAME_TREES;
td->str = tt == TREE_CACTUS ? STR_LAI_TREE_NAME_CACTUS_PLANTS : STR_LAI_TREE_NAME_TREES;
}
td->owner[0] = GetTileOwner(tile);