summaryrefslogtreecommitdiff
path: root/src/industrytype.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2021-01-18 22:42:10 +0100
committerGitHub <noreply@github.com>2021-01-18 22:42:10 +0100
commitb3d048dfcf607cdc9f041b3913cb9932b492d539 (patch)
treeb68ca22aaac9eb8069ac21f06f6a69cf6dd5df34 /src/industrytype.h
parent7da224d29d4af6333d187ccbf5104e6a1bf805f9 (diff)
downloadopenttd-b3d048dfcf607cdc9f041b3913cb9932b492d539.tar.xz
Change: [NewGRF] industry special flag 19 now specifically targets only passenger production, instead of the second cargo of any water-based industry. (#8590)
This behavior is less surprising to NewGRF authors, and may even be intentional behavior for some industries.
Diffstat (limited to 'src/industrytype.h')
-rw-r--r--src/industrytype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industrytype.h b/src/industrytype.h
index 937ff62cb..d5f1ba96a 100644
--- a/src/industrytype.h
+++ b/src/industrytype.h
@@ -80,7 +80,7 @@ enum IndustryBehaviour {
INDUSTRYBEH_NOBUILT_MAPCREATION = 1 << 16, ///< Do not force one instance of this type to appear on map generation
INDUSTRYBEH_CANCLOSE_LASTINSTANCE = 1 << 17, ///< Allow closing down the last instance of this type
INDUSTRYBEH_CARGOTYPES_UNLIMITED = 1 << 18, ///< Allow produced/accepted cargoes callbacks to supply more than 2 and 3 types
- INDUSTRYBEH_WATER_NO_CLAMP_PROD = 1 << 19, ///< Do not clamp production of second cargo for water industries
+ INDUSTRYBEH_NO_PAX_PROD_CLAMP = 1 << 19, ///< Do not clamp production of passengers. (smooth economy only)
};
DECLARE_ENUM_AS_BIT_SET(IndustryBehaviour)