diff --git a/common/src/comp/agent.rs b/common/src/comp/agent.rs index 4847fdd8de..89a90d5471 100644 --- a/common/src/comp/agent.rs +++ b/common/src/comp/agent.rs @@ -1,6 +1,6 @@ use specs::{Component, Entity as EcsEntity}; -use vek::*; use specs_idvs::IDVStorage; +use vek::*; #[derive(Copy, Clone, Debug)] pub enum Agent { diff --git a/common/src/comp/controller.rs b/common/src/comp/controller.rs index 1391320ea1..38f5796193 100644 --- a/common/src/comp/controller.rs +++ b/common/src/comp/controller.rs @@ -1,6 +1,6 @@ use specs::{Component, FlaggedStorage}; -use vek::*; use specs_idvs::IDVStorage; +use vek::*; #[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)] pub struct Controller { diff --git a/common/src/comp/inputs.rs b/common/src/comp/inputs.rs index 5f2a3a4373..a98012c787 100644 --- a/common/src/comp/inputs.rs +++ b/common/src/comp/inputs.rs @@ -1,6 +1,6 @@ use specs::{Component, FlaggedStorage, NullStorage}; -use vek::*; use specs_idvs::IDVStorage; +use vek::*; #[derive(Clone, Debug, Default, Serialize, Deserialize)] pub struct Respawning; diff --git a/common/src/comp/phys.rs b/common/src/comp/phys.rs index e8a9ca0ff8..46144c8977 100644 --- a/common/src/comp/phys.rs +++ b/common/src/comp/phys.rs @@ -1,6 +1,6 @@ use specs::{Component, NullStorage}; -use vek::*; use specs_idvs::IDVStorage; +use vek::*; // Position #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] diff --git a/common/src/comp/visual.rs b/common/src/comp/visual.rs index 16dafbfa95..e192e0f44d 100644 --- a/common/src/comp/visual.rs +++ b/common/src/comp/visual.rs @@ -1,6 +1,6 @@ use specs::{Component, FlaggedStorage}; -use vek::*; use specs_idvs::IDVStorage; +use vek::*; #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct LightEmitter {