point to github specs to access PairedStorage type, fix Loadout sync spam

This commit is contained in:
Imbris
2020-07-06 01:56:02 -04:00
parent 3c1fddfb0b
commit c2d6d00b00
26 changed files with 152 additions and 119 deletions

View File

@ -1,6 +1,6 @@
use crate::path::Chaser;
use specs::{Component, Entity as EcsEntity};
use specs_idvs::IDVStorage;
use specs_idvs::IdvStorage;
use vek::*;
#[derive(Copy, Clone, Debug, PartialEq)]
@ -43,7 +43,7 @@ impl Alignment {
}
impl Component for Alignment {
type Storage = IDVStorage<Self>;
type Storage = IdvStorage<Self>;
}
#[derive(Clone, Debug, Default)]
@ -72,7 +72,7 @@ impl Agent {
}
impl Component for Agent {
type Storage = IDVStorage<Self>;
type Storage = IdvStorage<Self>;
}
#[derive(Clone, Debug)]