mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-09 23:47:46 +00:00
Address "warning: useless use of format!
"
This commit is contained in:
parent
86c8d58fe3
commit
3a9912776f
1 changed files with 1 additions and 1 deletions
|
@ -816,7 +816,7 @@ async fn client_loop(
|
||||||
connection.send_message("Insufficient gil to buy item. Nice try bypassing the client-side check!").await;
|
connection.send_message("Insufficient gil to buy item. Nice try bypassing the client-side check!").await;
|
||||||
}
|
}
|
||||||
} else {
|
} 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 {
|
} else if *buy_sell_mode == SELL {
|
||||||
// TODO: Implement selling items back to shops
|
// TODO: Implement selling items back to shops
|
||||||
|
|
Loading…
Add table
Reference in a new issue