This shit lowkey pmo

This commit is contained in:
illegitimate-egg 2025-03-07 23:55:13 +00:00
parent d8b7273266
commit 44667f34ce
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ pub fn handle_client(
}
let mut verif_key = [0; 64];
verif_key.copy_from_slice(&payload_buffer[65..(64+65)]);
verif_key.copy_from_slice(&payload_buffer[65..(64 + 65)]);
let mut verif_key_formatted = String::new();
use std::fmt::Write;

View File

@ -23,8 +23,8 @@ impl World {
for _x in 0..size_x {
match y {
0..15 => world_dat.push(0x03), // Dirt
15 => world_dat.push(0x02), // Grass
_ => world_dat.push(0x00), // Air
15 => world_dat.push(0x02), // Grass
_ => world_dat.push(0x00), // Air
}
}
}