(svn r12022) -Revert(r12018): Invisible trees are now separate from the building concept.

So when you want invisible trees, just select the option of the same name in the Patch Options and toggle transparency of trees.
More to come on the saga of Invisibility. So stay tuned.
This commit is contained in:
belugas
2008-01-30 17:36:28 +00:00
parent 953c3cb6df
commit caf7e8655c
4 changed files with 4 additions and 9 deletions

View File

@@ -428,8 +428,8 @@ static void DrawTile_Trees(TileInfo *ti)
StartSpriteCombine();
/* Do not draw trees when buildings are transparent and when the invisile trees patch is on */
if (!(_patches.invisible_trees && IsTransparencySet(TO_HOUSES))) {
/* Do not draw trees when the invisible trees patch and transparency tree are set */
if (!(IsTransparencySet(TO_TREES) && _patches.invisible_trees)) {
TreeListEnt te[4];
uint i;