diff --git a/src/ship/ship.rs b/src/ship/ship.rs index 59231e6..847ba34 100644 --- a/src/ship/ship.rs +++ b/src/ship/ship.rs @@ -318,7 +318,7 @@ impl ShipServerState { fn player_chat(&mut self, id: ClientId, msg: &PlayerChat) -> Result>, ShipError> { let client = self.clients.get_mut(&id).ok_or(ShipError::ClientNotFound(id))?; - let cmsg = PlayerChat::new(0x00010000, client.user.guildcard.unwrap(), msg.message.clone()); + let cmsg = PlayerChat::new(client.user.guildcard.unwrap(), msg.message.clone()); Ok(Box::new(self.client_location.get_area_by_user(id).clients().iter() .map(move |client| {