1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-02 03:07:44 +00:00

Remove that one annoying unused variable

This commit is contained in:
Joshua Goins 2025-04-30 22:19:56 -04:00
parent 15af4bc1d0
commit c8a971a5e6

View file

@ -114,7 +114,7 @@ async fn main_loop(mut recv: Receiver<ToServer>) -> Result<(), std::io::Error> {
}
}
}
ToServer::ActorDespawned(from_id, actor_id) => {
ToServer::ActorDespawned(_from_id, actor_id) => {
data.actors.remove(&ObjectId(actor_id));
for (id, handle) in &mut data.clients {