Skip to content

Commit

Permalink
remove dbg! which shouldn´t be there
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrixyz committed Sep 17, 2024
1 parent 5e91c6c commit d6e0e56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/pipeline/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ mod test {
));

for i in 0..100 {
dbg!(i);
app.update();
}
return;
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/systems/multiple_rapier_contexts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub fn on_change_world(
})
.unwrap_or(false)
{
remove_old_physics(dbg!(entity), &mut commands);
remove_old_physics(entity, &mut commands);
bubble_down_world_change(
&mut commands,
entity,
Expand Down

0 comments on commit d6e0e56

Please sign in to comment.