summaryrefslogtreecommitdiff
path: root/src/room.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2021-12-31 14:38:26 +0100
committertroido <troido@protonmail.com>2021-12-31 14:38:26 +0100
commit290eb2791b1da5836641df935c9bac5b21273e7b (patch)
tree383e5aeaee5b0fe3b5f996f4e6298326247a03b9 /src/room.rs
parent755ae8512bfe3ff39a55c22a958e15399e886c5f (diff)
made assemblage fields privateHEADmain
Diffstat (limited to 'src/room.rs')
-rw-r--r--src/room.rs54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/room.rs b/src/room.rs
index f6e2613..906ab47 100644
--- a/src/room.rs
+++ b/src/room.rs
@@ -45,32 +45,32 @@ use crate::{
Result,
Timestamp,
systems::{
- Move,
- RegisterNew,
- ControlInput,
- View,
- Remove,
- Create,
- Take,
- Migrate,
- Use,
- Attacking,
- Trapping,
- Fight,
- Heal,
- UpdateCooldowns,
- ControlAI,
- Die,
- Spawn,
- Interact,
- DropLoot,
- Timeout,
- Clear,
- Building,
- SpawnTrigger,
- Replace,
- SpawnCheck,
- Describe
+ moving::Move,
+ registernew::RegisterNew,
+ controlinput::ControlInput,
+ view::View,
+ remove::Remove,
+ create::Create,
+ take::Take,
+ migrate::Migrate,
+ useitem::Use,
+ attacking::Attacking,
+ trapping::Trapping,
+ fight::Fight,
+ heal::Heal,
+ updatecooldowns::UpdateCooldowns,
+ controlai::ControlAI,
+ die::Die,
+ spawn::Spawn,
+ interact::Interact,
+ droploot::DropLoot,
+ timeout::Timeout,
+ clear::Clear,
+ building::Building,
+ spawntrigger::SpawnTrigger,
+ replace::Replace,
+ spawncheck::SpawnCheck,
+ describe::Describe
}
};
@@ -157,7 +157,6 @@ impl Room {
SpawnCheck.run_now(&self.world);
ControlInput.run_now(&self.world);
ControlAI.run_now(&self.world);
- Describe.run_now(&self.world);
Take.run_now(&self.world);
Use.run_now(&self.world);
Interact.run_now(&self.world);
@@ -182,6 +181,7 @@ impl Room {
Remove.run_now(&self.world);
self.world.maintain();
RegisterNew.run_now(&self.world);
+ Describe.run_now(&self.world);
View.run_now(&self.world);
Clear.run_now(&self.world);
}