From cdd94c899fd33502271df861fa168ecdc1f1468f Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Fri, 9 Feb 2024 22:43:35 +0000 Subject: [PATCH] Minor tweaks to aiming --- voxygen/src/session/mod.rs | 2 +- voxygen/src/settings/gameplay.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/src/session/mod.rs b/voxygen/src/session/mod.rs index b8d3c01d39..c6d1e79fcd 100644 --- a/voxygen/src/session/mod.rs +++ b/voxygen/src/session/mod.rs @@ -593,7 +593,7 @@ impl PlayState for SessionState { .state() .read_storage::() .get(player_entity) - .map(|cs| cs.is_aimed()) + .map(|cs| cs.is_wield()) .unwrap_or(false); ( diff --git a/voxygen/src/settings/gameplay.rs b/voxygen/src/settings/gameplay.rs index 839d50c260..15cffd84ac 100644 --- a/voxygen/src/settings/gameplay.rs +++ b/voxygen/src/settings/gameplay.rs @@ -44,7 +44,7 @@ impl Default for GameplaySettings { auto_camera: false, bow_zoom: true, zoom_lock: false, - aim_offset_x: 1.0, + aim_offset_x: 0.6, aim_offset_y: 0.0, } }