Codechange: DC_NO_RAIL_OVERLAP is a remnant of the OldAI. (#8496)

The OldAI was removed in 2009. Pretty sure we can remove this flag
now too.
This commit is contained in:
Patric Stout
2021-01-05 12:36:57 +01:00
committed by GitHub
parent c017a3662a
commit bb28ff7226
2 changed files with 3 additions and 7 deletions

View File

@@ -349,7 +349,7 @@ enum DoCommandFlag {
DC_AUTO = 0x002, ///< don't allow building on structures
DC_QUERY_COST = 0x004, ///< query cost only, don't build.
DC_NO_WATER = 0x008, ///< don't allow building on water
DC_NO_RAIL_OVERLAP = 0x010, ///< don't allow overlap of rails (used in buildrail)
// 0x010 is unused
DC_NO_TEST_TOWN_RATING = 0x020, ///< town rating does not disallow you from building
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)