From 05f83459c1e6a7484a27b195fb2697bc4d491930 Mon Sep 17 00:00:00 2001 From: The Dax Date: Fri, 4 Jul 2025 10:25:23 -0400 Subject: [PATCH] Address "warning: deref which would be done by auto-deref" --- src/bin/kawari-world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/kawari-world.rs b/src/bin/kawari-world.rs index 8914fa3..4ae7de9 100644 --- a/src/bin/kawari-world.rs +++ b/src/bin/kawari-world.rs @@ -881,7 +881,7 @@ async fn client_loop( if should_cancel { // give control back to the player so they aren't stuck connection.event_finish(*event_id).await; - connection.send_message(&*format!("Event {event_id} tried to start, but it doesn't have a script associated with it!")).await; + connection.send_message(&format!("Event {event_id} tried to start, but it doesn't have a script associated with it!")).await; } } ClientZoneIpcData::EventYieldHandler(handler) => {