32a33
> #include "base/random.hh"
136,138c137,139
< time += Cycles(random() & 0x3); // [0...3]
< if ((random() & 0x7) == 0) { // 1 in 8 chance
< time += Cycles(100 + (random() % 0xf)); // 100 + [1...15]
---
> time += Cycles(random_mt.random(0, 3)); // [0...3]
> if (random_mt.random(0, 7) == 0) { // 1 in 8 chance
> time += Cycles(100 + random_mt.random(1, 15)); // 100 + [1...15]