Closed
Description
When you want to add *Components
, you must use .spawn(*Components)
and not .spawn((*Components, ..))
the spawning will fail, but there is no indication to the user, that it won't work.
This is also the case when adding .with(*Components)
instead of .with_bundle(*Components)
This should definitely tell user, that it's not correct to add bundles this way and not silently fail but compile no problem.