Clean up help message and if-let

Former-commit-id: 450281467a92b2b8186df74d83d108457513277a
This commit is contained in:
sxv20_ 2019-04-16 15:31:14 +01:00
parent 031e4b36d6
commit f8d75d900e

View File

@ -486,21 +486,20 @@ impl Server {
.find(|(_, player)| player.alias == alias)
.map(|(entity, _)| entity);
match opt_player {
Some(player) => {
if let Some(pos) =
self.state.read_component_cloned::<comp::phys::Pos>(player)
Some(player) => match self
.state
.read_component_cloned::<comp::phys::Pos>(player)
{
self.state.write_component(entity, pos);
} else {
self.clients.notify(
Some(pos) => self.state.write_component(entity, pos),
None => self.clients.notify(
entity,
ServerMsg::Chat(format!(
"Unable to teleport to player '{}'",
alias
)),
);
}
}
),
},
None => {
self.clients.notify(
entity,
@ -531,7 +530,8 @@ impl Server {
self.clients.notify(
entity,
ServerMsg::Chat(format!(
"Unrecognised command: '/{}'\nAvailable commands:",
"Unrecognised command: '/{}'\n
type '/help' for a list of available commands",
kwd
)),
);