Decrease more

This commit is contained in:
crumblingstatue 2023-04-14 16:34:45 +02:00
parent b7515c1bd5
commit 11dcc815f9

View file

@ -366,8 +366,8 @@ fn test_world_serialization() {
.init();
let mut w = World::new(WorldPos { x: 0, y: 0 }, "smoltestworld");
let wg = Worldgen::from_seed(0);
for y in 0..850 {
for x in 0..850 {
for y in 0..820 {
for x in 0..820 {
w.tile_at_mut(TilePos { x, y }, &wg).mid = (x + y) as u16;
}
}