diff --git a/client/src/lib.rs b/client/src/lib.rs index 35b0eabaf4..2e3ff1cd3d 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -54,8 +54,6 @@ impl Client { let state = State::new(); let mut postbox = PostBox::to_server(addr)?; - postbox.send(ClientMsg::Chat(String::from("Hello, world!"))); - postbox.send(ClientMsg::Chat(String::from("World, hello!"))); Ok(Self { thread_pool: threadpool::Builder::new() diff --git a/server-cli/src/main.rs b/server-cli/src/main.rs index 6d4e879a49..244f324a3d 100644 --- a/server-cli/src/main.rs +++ b/server-cli/src/main.rs @@ -3,7 +3,7 @@ use log::info; use server::{Input, Event, Server}; use common::clock::Clock; -const TPS: u64 = 20; +const TPS: u64 = 30; fn main() { // Init logging