Some panics to unreachable!, better error msging

This commit is contained in:
Llywelwyn 2023-09-23 00:12:05 +01:00
parent ae8f0d15a0
commit 23a42bab80
16 changed files with 19 additions and 19 deletions

View file

@ -137,7 +137,7 @@ impl BuilderChain {
None => {
self.starter = Some(starter);
}
Some(_) => panic!("You can only have one starting builder."),
Some(_) => unreachable!("You can only have one starting builder."),
};
}
@ -147,7 +147,7 @@ impl BuilderChain {
pub fn build_map(&mut self, rng: &mut RandomNumberGenerator) {
match &mut self.starter {
None => panic!("Cannot run a map builder chain without a starting build system"),
None => unreachable!("Cannot run a map builder chain without a starting build system"),
Some(starter) => {
// Build the starting map
starter.build_map(rng, &mut self.build_data);