imagine being level 0

This commit is contained in:
andy 2021-06-23 00:00:46 +00:00
parent f29b59507a
commit cd8ebc23a0

View File

@ -35,11 +35,6 @@ pub fn create_room(id: ClientId,
return Ok(Box::new(vec![(id, SendShipPacket::SmallDialog(SmallDialog::new("You must be at least level 20 \nto create Hard rooms.".into())))].into_iter()))
}
},
room::Difficulty::Normal => {
if level < 1 {
return Ok(Box::new(vec![(id, SendShipPacket::SmallDialog(SmallDialog::new("You must be at least level 1 \nto create Normal rooms.".into())))].into_iter()))
}
},
// i can't believe you've done this
_ => {unreachable!()},
};
@ -112,11 +107,6 @@ pub fn join_room(id: ClientId,
return Ok(Box::new(vec![(id, SendShipPacket::SmallDialog(SmallDialog::new("You must be at least level 20 \nto join Hard rooms.".into())))].into_iter()))
}
},
room::Difficulty::Normal => {
if level < 1 {
return Ok(Box::new(vec![(id, SendShipPacket::SmallDialog(SmallDialog::new("You must be at least level 1 \nto join Normal rooms.".into())))].into_iter()))
}
},
};
let original_area = client_location.get_area(id).unwrap();