From 093700ee1c9c4bfc95fdcc6e181a1698b571d0b9 Mon Sep 17 00:00:00 2001 From: T14D3 <73843330+T14D3@users.noreply.github.com> Date: Sat, 1 Apr 2023 15:46:41 +0200 Subject: [PATCH] fix: Add "Aimbot distance" to saved settings (#1162) --- src/core/globals.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/globals.hpp b/src/core/globals.hpp index cbdcb230..e917dbf6 100644 --- a/src/core/globals.hpp +++ b/src/core/globals.hpp @@ -666,7 +666,7 @@ namespace big float fov = 90.f; float distance = 200.f; std::uint32_t selected_bone = 0x796E; // Default to head - NLOHMANN_DEFINE_TYPE_INTRUSIVE(aimbot, enable, smoothing, smoothing_speed, fov, selected_bone) + NLOHMANN_DEFINE_TYPE_INTRUSIVE(aimbot, enable, smoothing, smoothing_speed, fov, distance, selected_bone) } aimbot{}; CustomWeapon custom_weapon = CustomWeapon::NONE; @@ -842,4 +842,4 @@ namespace big }; inline auto g = menu_settings(); -} \ No newline at end of file +}