File diff r24681:271b0ac7646d → r24682:b5c4b1ab5bdd
src/industrytype.h
Show inline comments
 
@@ -77,13 +77,13 @@ enum IndustryBehaviour {
 
	/* The following flags are only used for newindustries and do no represent any normal behaviour */
 
	INDUSTRYBEH_PROD_MULTI_HNDLING    = 1 << 14, ///< Automatic production multiplier handling
 
	INDUSTRYBEH_PRODCALLBACK_RANDOM   = 1 << 15, ///< Production callback needs random bits in var 10
 
	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)
 

	
 
/** Flags for miscellaneous industry tile specialities */
 
enum IndustryTileSpecialFlags {
 
	INDTILE_SPECIAL_NONE                  = 0,