fix(objects/input): disable_controller still lets hands exist

This commit is contained in:
Nova
2023-09-24 11:44:16 -04:00
parent 9ae8efb9d6
commit cf6285abe0
2 changed files with 10 additions and 6 deletions

View File

@@ -251,8 +251,8 @@ fn main() {
mouse_pointer.update(sk);
}
if let Some((left_hand, right_hand)) = &mut hands {
left_hand.update(sk);
right_hand.update(sk);
left_hand.update(!cli_args.disable_controller, sk);
right_hand.update(!cli_args.disable_controller, sk);
}
if let Some((left_controller, right_controller)) = &mut controllers {
left_controller.update(sk);