Changeset - r20075:2bda14adc373
[Not reviewed]
master
0 1 0
rubidium - 12 years ago 2013-02-23 18:29:55
rubidium@openttd.org
(svn r25038) -Fix [FS#5479]: minimise gaps feature caused removal to only happen at the signal build interval instead of the implicit interval of 1
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/rail_cmd.cpp
Show inline comments
 
@@ -1320,7 +1320,7 @@ static CommandCost CmdSignalTrackHelper(
 
			if (HasBit(signal_dir, 1)) signals |= SignalAgainstTrackdir(trackdir);
 

	
 
			/* Test tiles in between for suitability as well if minimising gaps. */
 
			bool test_only = minimise_gaps && signal_ctr < (last_used_ctr + signal_density);
 
			bool test_only = !remove && minimise_gaps && signal_ctr < (last_used_ctr + signal_density);
 
			CommandCost ret = DoCommand(tile, p1, signals, test_only ? flags & ~DC_EXEC : flags, remove ? CMD_REMOVE_SIGNALS : CMD_BUILD_SIGNALS);
 

	
 
			if (ret.Succeeded()) {
0 comments (0 inline, 0 general)