fix dumb keybind for move down

This commit is contained in:
Joe Ardent 2021-11-05 22:53:46 -07:00
parent c7452bba11
commit 9e9292320f
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ fn player_move(
KeyCode::A => velocity -= right,
KeyCode::D => velocity += right,
KeyCode::Space => velocity += Vec3::Y,
KeyCode::LShift => velocity -= Vec3::Y,
KeyCode::Delete => velocity -= Vec3::Y,
_ => (),
}
}