Skip to content

Commit e9a3a0d

Browse files
authored
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
1 parent 7b14b8c commit e9a3a0d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

crates/bevy_state/src/app.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ impl AppExtStates for App {
177177
self
178178
}
179179

180-
#[cfg(feature = "bevy_hierarchy")]
181180
fn enable_state_scoped_entities<S: States>(&mut self) -> &mut Self {
182181
self.main_mut().enable_state_scoped_entities::<S>();
183182
self

0 commit comments

Comments
 (0)