summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-10-28 10:55:34 +0000
committerfrosch <frosch@openttd.org>2013-10-28 10:55:34 +0000
commit12b30103b1341fc20389df4c40bd8b34b4b2be3d (patch)
tree0b0569109b8520d4aaff60646d9cc7cca0035461 /src/town.h
parent7480a00ce03e5cbedf5c1cda4ad2780d65d1f3f6 (diff)
downloadopenttd-12b30103b1341fc20389df4c40bd8b34b4b2be3d.tar.xz
(svn r25922) -Codechange: Rename TOWN_IS_FUNDED to TOWN_IS_GROWING. It is not tied to funding a town.
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town.h b/src/town.h
index 7251d6082..c378dd3c3 100644
--- a/src/town.h
+++ b/src/town.h
@@ -161,7 +161,7 @@ enum TownRatingCheckType {
* And there are 5 more bits available on flags...
*/
enum TownFlags {
- TOWN_IS_FUNDED = 0, ///< Town has received some funds for
+ TOWN_IS_GROWING = 0, ///< Conditions for town growth are met. Grow according to Town::growth_rate.
TOWN_HAS_CHURCH = 1, ///< There can be only one church by town.
TOWN_HAS_STADIUM = 2, ///< There can be only one stadium by town.
};