diff options
| author | troido <troido@protonmail.com> | 2020-04-13 17:00:22 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-04-13 17:00:22 +0200 |
| commit | ed84fb58e25efed952d0c874fde5232fbb26f45b (patch) | |
| tree | 55f06bd07ebf9fa837af830b05ea1242aa7ddc42 /src/components | |
| parent | 3cb46c733597c1f825190ad45c93aa3a24158605 (diff) | |
don't spawn immediately after each other
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/mod.rs b/src/components/mod.rs index 35f757e..6692445 100644 --- a/src/components/mod.rs +++ b/src/components/mod.rs @@ -181,7 +181,8 @@ pub struct Home { pub struct Spawner { pub amount: usize, pub clan: Clan, - pub template: Template + pub template: Template, + pub saturated: bool } #[derive(Component, Debug, Clone, PartialEq, Eq, Hash)] |
