aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-16 12:34:18 +0100
committerubq323 <ubq323@ubq323.website>2024-04-16 12:34:18 +0100
commit187d6d32e71aface08c1c486874901ecc9b160c1 (patch)
treef6c7e69d099e5a6ffcc9ca88a41f9cf15b76d8e1 /server
parent9bb892b35308919ff93d22e12387e6bdc0a64223 (diff)
fix chunkloading and unloading on client
Diffstat (limited to 'server')
-rw-r--r--server/main.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.ha b/server/main.ha
index 2043a1d..41e6b6a 100644
--- a/server/main.ha
+++ b/server/main.ha
@@ -199,7 +199,7 @@ fn handle_packet(
case let op: packet_reader::packet_drawop =>
// fmt::printfln("#{}: drawop ({:+6},{:+6}) r{}",
// conn_idx,opc.pos.0,opc.pos.1, opc.radius)!;
- drawing::perform(state.pictures, op);
+ drawing::perform_multi(state.pictures, op);
for (let other_idx = 0z;
other_idx < len(state.connections);
other_idx += 1)