Skip to content

Commit

Permalink
bungie: implement PK nerf from update 7.3.0.5 (#91)
Browse files Browse the repository at this point in the history
* bungie: implement PK nerf from update 7.3.0.5

* fix: update draw and stow scalars

---------

Co-authored-by: Kat Michaela <[email protected]>
  • Loading branch information
JayAndromeda and gothfemme authored Mar 12, 2024
1 parent 49cc4ce commit 9cf39c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build_resources/cached_build.ron
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(
last_manifest_version: "223717.24.02.07.1730-1-bnet.53921",
last_manifest_version: "224268.24.02.26.1306-2-bnet.54203",
dim_perk_mappings: [
(23371658, 2551157718),
(64332393, 2428997981),
Expand Down
8 changes: 4 additions & 4 deletions src/perks/exotic_armor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ pub fn exotic_armor() {
let mut stats = HashMap::new();
if _input.calc_data.weapon_type == &WeaponType::SUBMACHINEGUN {
stats.insert(StatHashes::AIRBORNE.into(), 40);
stats.insert(StatHashes::HANDLING.into(), 100);
stats.insert(StatHashes::HANDLING.into(), 50);
};
stats
},
Expand All @@ -333,10 +333,10 @@ pub fn exotic_armor() {
|_input: ModifierResponseInput| -> HandlingModifierResponse {
if _input.calc_data.weapon_type == &WeaponType::SUBMACHINEGUN {
return HandlingModifierResponse {
stat_add: 100,
stat_add: 50,
ads_scale: 1.0,
draw_scale: 0.6,
stow_scale: 0.6,
draw_scale: 0.8,
stow_scale: 0.8,
..Default::default()
};
}
Expand Down

0 comments on commit 9cf39c6

Please sign in to comment.