fix: Add "Aimbot distance" to saved settings (#1162)

This commit is contained in:
T14D3 2023-04-01 15:46:41 +02:00 committed by GitHub
parent 75afed1c8b
commit 093700ee1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();
}
}