# HG changeset patch # User rubidium # Date 2007-07-25 19:36:51 # Node ID 7684d535490b59d18f483222f331876129f55162 # Parent 29b211bab76e08c269bcbbde0379b12045eeffac (svn r10692) -Fix (r10691): those good old days that LT_NORMAL was still called LT_NORMAL :) diff --git a/src/economy.cpp b/src/economy.cpp --- a/src/economy.cpp +++ b/src/economy.cpp @@ -1187,7 +1187,7 @@ Money GetTransportedGoodsIncome(uint num } /* 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;