(svn r15452) -Codechange: Add DC_NO_MODIFY_TOWN_RATING.

This commit is contained in:
frosch
2009-02-11 18:50:47 +00:00
parent 92584d0149
commit 032346cf8a
6 changed files with 18 additions and 10 deletions

View File

@@ -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);