Skip to content

Commit

Permalink
Fix semicolon missing
Browse files Browse the repository at this point in the history
  • Loading branch information
lokka30 committed Oct 27, 2024
1 parent 8aba1ff commit abbc454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pumpkin/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl Server {
pub async fn get_player_count(&self) -> usize {
let mut count = 0;
for world in &self.worlds {
count += world.current_players.lock().await.len()
count += world.current_players.lock().await.len();
}
count
}
Expand Down

0 comments on commit abbc454

Please sign in to comment.