mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-09 15:37:45 +00:00
Address "warning: deref which would be done by auto-deref"
This commit is contained in:
parent
2d6c740829
commit
05f83459c1
1 changed files with 1 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue