Hex table

This commit is contained in:
2026-06-22 11:37:35 +03:00
parent eda216b85d
commit 74f01cf895
6 changed files with 162 additions and 29 deletions
+2 -2
View File
@@ -69,8 +69,8 @@ impl SeedAutomation {
fn next(&mut self, rng: &mut ChaCha8Rng) {
let len = (self.world.side * self.world.side) as f32;
loop {
let x = rng.random_range(2..14);
let y = rng.random_range(2..14);
let x = rng.random_range(16..48);
let y = rng.random_range(16..48);
if *self.world.get_dim(x, y) {
continue;