From 3a9912776f74c166640ab504ed5ef540d17a2009 Mon Sep 17 00:00:00 2001 From: The Dax Date: Fri, 4 Jul 2025 10:28:21 -0400 Subject: [PATCH] Address "warning: useless use of `format!`" --- 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 5e6f2b7..ddbbd45 100644 --- a/src/bin/kawari-world.rs +++ b/src/bin/kawari-world.rs @@ -816,7 +816,7 @@ async fn client_loop( connection.send_message("Insufficient gil to buy item. Nice try bypassing the client-side check!").await; } } else { - connection.send_message(&format!("Unable to find shop item, this is a bug in Kawari!")).await; + connection.send_message("Unable to find shop item, this is a bug in Kawari!").await; } } else if *buy_sell_mode == SELL { // TODO: Implement selling items back to shops