diff --git a/noita-proxy/src/net/world.rs b/noita-proxy/src/net/world.rs index 280f7163..638f2e89 100644 --- a/noita-proxy/src/net/world.rs +++ b/noita-proxy/src/net/world.rs @@ -852,16 +852,14 @@ impl WorldManager { authority, my_priority, .. - }) => { - if priority <= *my_priority { - let cs = ChunkState::Listening { - authority: *authority, - priority, - }; - self.chunk_state.insert(delta.chunk_coord, cs); - } + }) if priority <= *my_priority => { + let cs = ChunkState::Listening { + authority: *authority, + priority, + }; + self.chunk_state.insert(delta.chunk_coord, cs); } - _ => return, + _ => continue, } self.inbound_model.apply_chunk_delta(&delta); }