We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b9e977 + cb57f2a commit 6fe1cc9Copy full SHA for 6fe1cc9
game/legacy-proxy/src/lib.rs
@@ -2387,7 +2387,7 @@ impl Client {
2387
log.log(format!("Received map chunk: {}", map_data.chunk));
2388
log.log(format!("{total_len} of {expected_size} bytes downloaded"));
2389
let downloading_chunks = data.values().filter(|d| d.is_empty()).count();
2390
- for i in next_chunk..next_chunk + 50usize.saturating_sub(downloading_chunks)
+ for i in next_chunk..next_chunk + 10usize.saturating_sub(downloading_chunks)
2391
{
2392
data.insert(i, Default::default());
2393
socket.sends(System::RequestMapData(system::RequestMapData {
0 commit comments