Skip to content

Commit

Permalink
Ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Dec 14, 2024
1 parent 53a8c67 commit 5a37dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_asset/src/asset_changed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl<'w, A: AsAssetId> AssetChangeCheck<'w, A> {
// which is not optimal.
fn has_changed(&self, handle: &A) -> bool {
let is_newer = |tick: &Tick| tick.is_newer_than(self.last_run, self.this_run);
let ids = handle.as_asset_id();
let id = handle.as_asset_id();

self.change_ticks
.is_some_and(|change_ticks| change_ticks.get(&id).is_some_and(is_newer))
Expand Down

0 comments on commit 5a37dca

Please sign in to comment.