summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-24 13:25:35 +0000
committerrubidium <rubidium@openttd.org>2009-02-24 13:25:35 +0000
commit39b6a2a507c312861ca68ebe570ef655f79e57ee (patch)
tree8201cc1cdc699f1489482fc2a064cd52eff12b9c /src/network
parent8a1d11ed851295e9a0b832636acfc3525a759d53 (diff)
downloadopenttd-39b6a2a507c312861ca68ebe570ef655f79e57ee.tar.xz
(svn r15565) -Fix [FS#2675]: dependency information wasn't requested after the content state was reset causing the dependencies not always being selected (and thus downloaded) automatically.
Diffstat (limited to 'src/network')
-rw-r--r--src/network/network_content.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/network_content.cpp b/src/network/network_content.cpp
index 42077ca08..e6d1781cb 100644
--- a/src/network/network_content.cpp
+++ b/src/network/network_content.cpp
@@ -754,6 +754,7 @@ void ClientNetworkContentSocketHandler::Clear()
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) delete *iter;
this->infos.Clear();
+ this->requested.Clear();
}
/*** CALLBACK ***/