summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-23 13:42:23 +0000
committertruebrain <truebrain@openttd.org>2011-11-23 13:42:23 +0000
commit389ffec7dbd8ba69fddb477840fcb6f34221583c (patch)
tree38b48f8aa12ec28cff338ef897d273b94f81645b /src/town.h
parentd03bbdd4acc3fb160c29a5bc03d202bb89b008a2 (diff)
downloadopenttd-389ffec7dbd8ba69fddb477840fcb6f34221583c.tar.xz
(svn r23296) -Codechange: I found a fund building, but do I fund found buildings?
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/town.h b/src/town.h
index dc74d9176..8b7f6594b 100644
--- a/src/town.h
+++ b/src/town.h
@@ -194,14 +194,14 @@ enum TownActions {
TACT_ADVERTISE_LARGE = 0x04, ///< Large advertising campaign.
TACT_ROAD_REBUILD = 0x08, ///< Rebuild the roads.
TACT_BUILD_STATUE = 0x10, ///< Build a statue.
- TACT_FOUND_BUILDINGS = 0x20, ///< Found new buildings.
+ TACT_FUND_BUILDINGS = 0x20, ///< Fund new buildings.
TACT_BUY_RIGHTS = 0x40, ///< Buy exclusive transport rights.
TACT_BRIBE = 0x80, ///< Try to bribe the counsil.
TACT_COUNT = 8, ///< Number of available town actions.
TACT_ADVERTISE = TACT_ADVERTISE_SMALL | TACT_ADVERTISE_MEDIUM | TACT_ADVERTISE_LARGE, ///< All possible advertising actions.
- TACT_CONSTRUCTION = TACT_ROAD_REBUILD | TACT_BUILD_STATUE | TACT_FOUND_BUILDINGS, ///< All possible construction actions.
+ TACT_CONSTRUCTION = TACT_ROAD_REBUILD | TACT_BUILD_STATUE | TACT_FUND_BUILDINGS, ///< All possible construction actions.
TACT_FUNDS = TACT_BUY_RIGHTS | TACT_BRIBE, ///< All possible funding actions.
TACT_ALL = TACT_ADVERTISE | TACT_CONSTRUCTION | TACT_FUNDS, ///< All possible actions.
};