summaryrefslogtreecommitdiff
path: root/src/economy.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-25 19:36:51 +0000
committerrubidium <rubidium@openttd.org>2007-07-25 19:36:51 +0000
commit715c5566a398c73c023535f4f6efa3d04338248b (patch)
treebd7180f1baa35dbf102fe13223b97f028ffc0125 /src/economy.cpp
parentaa36c607b40fa499780e3818a032788afa19bd1f (diff)
downloadopenttd-715c5566a398c73c023535f4f6efa3d04338248b.tar.xz
(svn r10692) -Fix (r10691): those good old days that LT_NORMAL was still called LT_NORMAL :)
Diffstat (limited to 'src/economy.cpp')
-rw-r--r--src/economy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/economy.cpp b/src/economy.cpp
index b82496791..5cf7298b6 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -1187,7 +1187,7 @@ Money GetTransportedGoodsIncome(uint num_pieces, uint dist, byte transit_days, C
}
/* zero the distance (thus income) if it's the bank and very short transport. */
- if (_opt.landscape == LT_NORMAL && cs->label == 'VALU' && dist < 10) return 0;
+ if (_opt.landscape == LT_TEMPERATE && cs->label == 'VALU' && dist < 10) return 0;
static const int MIN_TIME_FACTOR = 31;