mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-02 07:45:26 +00:00
wip small stuff
This commit is contained in:
parent
5d8c9cd792
commit
0b6ad43fbb
5
README.md
Normal file
5
README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# BeamMP Server
|
||||
A BeamMP server implementation in Rust, meant to (hopefully) replace the official server implementation one day.
|
||||
|
||||
## Features
|
||||
TODO
|
@ -149,14 +149,14 @@ impl Server {
|
||||
clients_incoming_lock.len()
|
||||
);
|
||||
for i in 0..clients_incoming_lock.len() {
|
||||
joined_names.push(
|
||||
clients_incoming_lock[i]
|
||||
.info
|
||||
.as_ref()
|
||||
.unwrap()
|
||||
.username
|
||||
.clone(),
|
||||
);
|
||||
let name = clients_incoming_lock[i]
|
||||
.info
|
||||
.as_ref()
|
||||
.unwrap()
|
||||
.username
|
||||
.clone();
|
||||
info!("Welcome {name}!");
|
||||
joined_names.push(name);
|
||||
self.clients.push(clients_incoming_lock.swap_remove(i));
|
||||
}
|
||||
trace!("Accepted incoming clients!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user