diff options
author | smatz <smatz@openttd.org> | 2008-02-04 22:44:05 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-02-04 22:44:05 +0000 |
commit | 5dacd82903da00fdc4f32822bca6c01e53db4a90 (patch) | |
tree | 82f0bac7b2df225cd48313fcb9b58b93954de6f5 | |
parent | e9b22d7c70482ae4fec5784579bec8699085e624 (diff) | |
download | openttd-5dacd82903da00fdc4f32822bca6c01e53db4a90.tar.xz |
(svn r12061) -Cleanup: since r12060, DC_FORCETEST is not used anymore
-rw-r--r-- | src/command.cpp | 2 | ||||
-rw-r--r-- | src/command_type.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/command.cpp b/src/command.cpp index c550dcb8f..0a6393f66 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -426,7 +426,7 @@ CommandCost DoCommand(TileIndex tile, uint32 p1, uint32 p2, uint32 flags, uint32 _docommand_recursive++; /* only execute the test call if it's toplevel, or we're not execing. */ - if (_docommand_recursive == 1 || !(flags & DC_EXEC) || (flags & DC_FORCETEST) ) { + if (_docommand_recursive == 1 || !(flags & DC_EXEC) ) { SetTownRatingTestMode(true); res = proc(tile, flags & ~DC_EXEC, p1, p2); SetTownRatingTestMode(false); diff --git a/src/command_type.h b/src/command_type.h index 22f9c2014..9a2649cbc 100644 --- a/src/command_type.h +++ b/src/command_type.h @@ -271,7 +271,6 @@ enum { DC_NO_RAIL_OVERLAP = 0x10, ///< don't allow overlap of rails (used in buildrail) DC_AI_BUILDING = 0x20, ///< special building rules for AI DC_NO_TOWN_RATING = 0x40, ///< town rating does not disallow you from building - DC_FORCETEST = 0x80, ///< force test too. }; /** |