diff options
| author | troido <troido@protonmail.com> | 2020-04-07 22:50:01 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-04-07 22:50:01 +0200 |
| commit | 5bef1829e443985e960a3cb64106d3f2e3dbf420 (patch) | |
| tree | e8c5d04bcfdc09c38c6595c4efb6acfd2e869c5d /src/purgatory.rs | |
| parent | 9d09670cb239ac9ed5d08a765b2b627b13121efe (diff) | |
removed view_dispatcher; just call those systems manually
Diffstat (limited to 'src/purgatory.rs')
| -rw-r--r-- | src/purgatory.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/purgatory.rs b/src/purgatory.rs index 2b5a731..12be7cc 100644 --- a/src/purgatory.rs +++ b/src/purgatory.rs @@ -12,8 +12,6 @@ use crate::{ systems::{ Move, ControlInput, - Remove, - Create, Volate, UpdateCooldowns, ControlAI, @@ -31,8 +29,6 @@ pub fn create_purgatory<'a, 'b>(encyclopedia: &Encyclopedia) -> Room<'a, 'b> { .with(ControlInput, "controlinput", &["cool_down"]) .with(ControlAI, "controlai", &["cool_down"]) .with(Move, "move", &["controlinput", "controlai"]) - .with(Create, "create", &["move", "volate"]) - .with(Remove, "remove", &["volate", "move"]) .build(); let mut room = Room::new(purgatory_id(), encyclopedia.clone(), dispatcher); room.load_from_template(&RoomTemplate::from_json(&json!({ |
