Path: blob/main/release-content/migration-guides/observers_may_not_be_exclusive.md
6592 views
---
---
Exclusive systems may no longer be used as observers. This was never sound, as the engine keeps references alive during observer invocation that would be invalidated by &mut World
access, but was accidentally allowed. Instead of &mut World
, use either DeferredWorld
if you do not need structural changes, or Commands
if you do.