Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
vyPal committed Feb 14, 2025
1 parent 4cd379c commit bd6c465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pumpkin/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ impl Server {
}
}

return Some((player, world.clone()))
Some((player, world.clone()))
}

'cancelled: {
player.kick(event.kick_message).await;
return None
None
}
}}
}
Expand Down

0 comments on commit bd6c465

Please sign in to comment.