use crate::bail_if_cheats_are_not_allowed;
use crate::error::Result;
use crate::world::World;
use std::num::NonZeroU8;
impl World {
pub fn cheat_skip_round(&mut self, amount: NonZeroU8) -> Result<()> {
bail_if_cheats_are_not_allowed!(self);
if !self.round.is_idle() {
let amount = amount.get();
for i in 1..=amount {
self.dangerously_end_round(i == amount)?;
}
}
Ok(())
}
}