Skip to content

Commit 8a4fcc3

Browse files
committed
fix fmt error
1 parent b15b723 commit 8a4fcc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

squash-the-creeps/rust/src/player.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ impl ICharacterBody3D for Player {
8888
// smooth out the character's motion. So we have to loop over all collisions that may have
8989
// happened.
9090
// If there are no "slides" this frame, the loop below won't run.
91-
for index in 0..self.base().get_slide_collision_count() {
91+
for index in 0..self.base().get_slide_collision_count() {
9292
let collision = self.base_mut().get_slide_collision(index).unwrap();
9393
// Skip given collider if they are not a Mob.
9494
// Mob is an instance of Mob class in the "mob" group.

0 commit comments

Comments
 (0)