feat: add min method to Outcome
This commit is contained in:
@@ -3,6 +3,6 @@ use crate::*;
|
||||
impl Die {
|
||||
pub fn roll(&self) -> u16 {
|
||||
let mut rng = rand::rng();
|
||||
rng.random_range(1..=self.sides)
|
||||
rng.random_range(1..=self.sides) as u16
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user