Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
terrarier2111 authored Sep 6, 2021
1 parent 30b43d5 commit a73e8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entity/systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl ecs::System for ApplyVelocity {
) {
for e in m.find(&self.filter) {
if m.get_component(e, self.movement).is_some() {
// Player's handle their own physics
// Players handle their own physics
continue;
}
let pos = m.get_component_mut(e, self.position).unwrap();
Expand Down

0 comments on commit a73e8c7

Please sign in to comment.