From 9a63ea2b1823b00bfccfa5efd0c15ad43c4ad59a Mon Sep 17 00:00:00 2001 From: zoe Date: Wed, 4 May 2022 00:12:01 +0200 Subject: [PATCH] add generate world method --- routes-native/src/stateserver/world.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/routes-native/src/stateserver/world.rs b/routes-native/src/stateserver/world.rs index 7eb7753..6cd62e5 100644 --- a/routes-native/src/stateserver/world.rs +++ b/routes-native/src/stateserver/world.rs @@ -15,7 +15,6 @@ impl World { for y in 0..self.ysize { for z in 0..self.zsize { godot_print!("hello, {} {} {}", x, y, z); - // self.tiles[x][y][z] = tiles::Tile::new(tiles::Tiletypes::Dirt, x, y, z); } }