Changeset - r12585:1cbbde1f1c7c
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-08-02 13:58:11
rubidium@openttd.org
(svn r17038) -Fix (r17015): don't download the stuff we already have
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/network/network_content.cpp
Show inline comments
 
@@ -245,7 +245,7 @@ void ClientNetworkContentSocketHandler::
 
	ContentID *ids = MallocT<ContentID>(infos.Length());
 
	for (ContentIterator iter = infos.Begin(); iter != infos.End(); iter++) {
 
		const ContentInfo *ci = *iter;
 
		if (!ci->IsSelected()) continue;
 
		if (!ci->IsSelected() || ci->state == ContentInfo::ALREADY_HERE) continue;
 

	
 
		ids[files++] = ci->id;
 
		bytes += ci->filesize;
0 comments (0 inline, 0 general)