Fix imports

This commit is contained in:
Inojelis 2022-02-21 03:46:02 +02:00
parent 13308d009d
commit 9bdb7198f5

View File

@ -1,9 +1,5 @@
use std::time::Duration;
use rand::{prelude::*, rngs::SmallRng};
use vek::*;
use common::{ use common::{
calendar::Calendar,
generation::{ChunkSupplement, EntityInfo}, generation::{ChunkSupplement, EntityInfo},
resources::TimeOfDay, resources::TimeOfDay,
terrain::{ terrain::{
@ -11,7 +7,9 @@ use common::{
}, },
vol::{ReadVol, RectVolSize, WriteVol}, vol::{ReadVol, RectVolSize, WriteVol},
}; };
use common::calendar::Calendar; use rand::{prelude::*, rngs::SmallRng};
use std::time::Duration;
use vek::*;
const DEFAULT_WORLD_CHUNKS_LG: MapSizeLg = const DEFAULT_WORLD_CHUNKS_LG: MapSizeLg =
if let Ok(map_size_lg) = MapSizeLg::new(Vec2 { x: 1, y: 1 }) { if let Ok(map_size_lg) = MapSizeLg::new(Vec2 { x: 1, y: 1 }) {