diff options
| author | HampusM <hampus@hampusmat.com> | 2026-06-16 17:23:05 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-06-16 17:23:05 +0200 |
| commit | 166da477e761416a87ffd5fb8fc49ceaf7f53690 (patch) | |
| tree | 60e54ee65aca16e8d0e03a6dd3306b8622c8da6e /engine-ecs/src/actions.rs | |
| parent | 5cdb4b0adb55cf2995e999135c5f3e9d6da70843 (diff) | |
feat(engine-ecs): impl component::Sequence for component::Parts arrays
Diffstat (limited to 'engine-ecs/src/actions.rs')
| -rw-r--r-- | engine-ecs/src/actions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine-ecs/src/actions.rs b/engine-ecs/src/actions.rs index efef384..9e88011 100644 --- a/engine-ecs/src/actions.rs +++ b/engine-ecs/src/actions.rs @@ -69,7 +69,7 @@ impl Actions<'_> { debug_assert!(!entity_uid.is_pair()); - if Comps::COUNT == 0 { + if components.cnt() == 0 { return; } |
