summaryrefslogtreecommitdiff
path: root/src/command_type.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-02-11 18:50:47 +0000
committerfrosch <frosch@openttd.org>2009-02-11 18:50:47 +0000
commitd5525b8f2d457f6e0ecc0b11d27c9c3601c8d006 (patch)
tree717fc81d934cae1a2abe2a694c4ad55aa012b0af /src/command_type.h
parent202e5ea78d74610011685270c4418411a9f892e7 (diff)
downloadopenttd-d5525b8f2d457f6e0ecc0b11d27c9c3601c8d006.tar.xz
(svn r15452) -Codechange: Add DC_NO_MODIFY_TOWN_RATING.
Diffstat (limited to 'src/command_type.h')
-rw-r--r--src/command_type.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command_type.h b/src/command_type.h
index 883a0f7bd..c4ebde6d6 100644
--- a/src/command_type.h
+++ b/src/command_type.h
@@ -304,6 +304,7 @@ enum DoCommandFlag {
DC_BANKRUPT = 0x040, ///< company bankrupts, skip money check, skip vehicle on tile check in some cases
DC_AUTOREPLACE = 0x080, ///< autoreplace/autorenew is in progress, this shall disable vehicle limits when building, and ignore certain restrictions when undoing things (like vehicle attach callback)
DC_ALL_TILES = 0x100, ///< allow this command also on MP_VOID tiles
+ DC_NO_MODIFY_TOWN_RATING = 0x200, ///< do not change town rating
};
DECLARE_ENUM_AS_BIT_SET(DoCommandFlag);