File diff r25225:126e4a36a4eb → r25226:099b6b8941ab
src/autoreplace_cmd.cpp
Show inline comments
 
@@ -738,12 +738,15 @@ CommandCost CmdAutoreplaceVehicle(TileIn
 
		if (!v->IsPrimaryVehicle()) return CMD_ERROR;
 
	}
 

	
 
	const Company *c = Company::Get(_current_company);
 
	bool wagon_removal = c->settings.renew_keep_length;
 

	
 
	const Group *g = Group::GetIfValid(v->group_id);
 
	if (g != nullptr) wagon_removal = HasBit(g->flags, GroupFlags::GF_REPLACE_WAGON_REMOVAL);
 

	
 
	/* Test whether any replacement is set, before issuing a whole lot of commands that would end in nothing changed */
 
	Vehicle *w = v;
 
	bool any_replacements = false;
 
	while (w != nullptr) {
 
		EngineID e;
 
		CommandCost cost = GetNewEngineType(w, c, false, e);