This commit is contained in:
Hardhat Chad
2025-10-01 11:52:44 -07:00
parent cf248d7a28
commit a8ba556a13
3 changed files with 68 additions and 206 deletions

View File

@@ -91,7 +91,7 @@ impl Round {
total_winnings
}
pub fn did_motherlode_hit(&self, rng: u64) -> bool {
pub fn did_hit_motherlode(&self, rng: u64) -> bool {
rng.reverse_bits() % 625 == 0
}
}