diff options
author | rubidium <rubidium@openttd.org> | 2009-02-24 13:25:35 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-02-24 13:25:35 +0000 |
commit | 39b6a2a507c312861ca68ebe570ef655f79e57ee (patch) | |
tree | 8201cc1cdc699f1489482fc2a064cd52eff12b9c | |
parent | 8a1d11ed851295e9a0b832636acfc3525a759d53 (diff) | |
download | openttd-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.
-rw-r--r-- | src/network/network_content.cpp | 1 |
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 ***/ |