mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
Clear messed up feature flag on AppExitStates impl (#13737)
# Objective - In #13649 additional method had been added to AppExitStates, but there feature gate left for method in implementation for App at refactoring stage. - Fixes #13733 . ## Solution - Removed the feature gate. ## Testing - Ran reproducing example from #13733 with no compilation errors
This commit is contained in:
parent
7b14b8c015
commit
e9a3a0d694
1 changed files with 0 additions and 1 deletions
|
@ -177,7 +177,6 @@ impl AppExtStates for App {
|
|||
self
|
||||
}
|
||||
|
||||
#[cfg(feature = "bevy_hierarchy")]
|
||||
fn enable_state_scoped_entities<S: States>(&mut self) -> &mut Self {
|
||||
self.main_mut().enable_state_scoped_entities::<S>();
|
||||
self
|
||||
|
|
Loading…
Reference in a new issue