Make the main menu look nicer

This commit is contained in:
Thinkofname 2016-04-03 21:17:02 +01:00
parent ed4399a3e6
commit d2e1eba8f9
1 changed files with 2 additions and 2 deletions

View File

@ -196,13 +196,13 @@ impl Server {
pub fn dummy_server(resources: Arc<RwLock<resources::Manager>>, console: Arc<Mutex<console::Console>>) -> Server {
let mut server = Server::new(resources, console, None, None);
let mut rng = rand::thread_rng();
for x in -7*16 .. 7*16 {
for z in -7*16 .. 7*16 {
let h = rng.gen_range(3, 10);
let h = 5 + (6.0 * (x as f64 / 16.0).cos() * (z as f64 / 16.0).sin()) as i32;
for y in 0 .. h {
server.world.set_block(Position::new(x, y, z), block::Dirt{ snowy: false, variant: block::DirtVariant::Normal });
}
server.world.set_block(Position::new(x, h, z), block::Grass{ snowy: false });
}
}
server