mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fix imports
This commit is contained in:
parent
13308d009d
commit
9bdb7198f5
@ -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 }) {
|
||||||
|
Loading…
Reference in New Issue
Block a user