summaryrefslogtreecommitdiff
path: root/src/tree_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tree_cmd.cpp')
-rw-r--r--src/tree_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tree_cmd.cpp b/src/tree_cmd.cpp
index 890243ed6..1adce1a9d 100644
--- a/src/tree_cmd.cpp
+++ b/src/tree_cmd.cpp
@@ -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;