This commit is contained in:
Hardhat Chad
2025-10-09 08:51:13 -07:00
parent 44f4021834
commit 7f98f16512
9 changed files with 15 additions and 27 deletions

View File

@@ -90,7 +90,7 @@ impl Round {
let r3 = u16::from_le_bytes(rng[4..6].try_into().unwrap());
let r4 = u16::from_le_bytes(rng[6..8].try_into().unwrap());
let r = r1 ^ r2 ^ r3 ^ r4;
r % 4 == 0
r % 3 == 0
}
pub fn did_hit_motherlode(&self, rng: u64) -> bool {