Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/perks/buff_perks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pub fn buff_perks() {
);

add_dmr(
Perks::NobleRounds,
Perks::BlessingOfTheSky,
Box::new(|_input: ModifierResponseInput| -> DamageModifierResponse {
if _input.value == 0 {
return DamageModifierResponse::default();
Expand Down
2 changes: 1 addition & 1 deletion src/perks/exotic_armor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ pub fn exotic_armor() {
Box::new(
|_input: ModifierResponseInput| -> HashMap<BungieHash, StatBump> {
let mut stats = HashMap::new();
if _input.calc_data.intrinsic_hash == 2144092201 {
if _input.calc_data.intrinsic_hash == Perks::NobleRounds.into() {
//Lumina
stats.insert(StatHashes::AIRBORNE.into(), 30);
};
Expand Down
1 change: 1 addition & 0 deletions src/perks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ pub enum Perks {
RideTheBull = 630329983,
HuntersTrance = 383825919,
NobleRounds = 2144092201,
BlessingOfTheSky = 743139589,
StormAndStress = 2238035098,
Roadborn = 1658733671,
MarkovChain = 2814973067,
Expand Down
3 changes: 2 additions & 1 deletion src/perks/perk_options_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ fn hash_to_perk_option_data(_hash: u32) -> Option<PerkOptionData> {
Perks::RatPack => Some(PerkOptionData::stacking_min(5, 1)),
Perks::HuntersTrance => Some(PerkOptionData::static_()),
Perks::RideTheBull => Some(PerkOptionData::stacking(2)),
Perks::NobleRounds => Some(PerkOptionData::toggle()),
Perks::NobleRounds => Some(PerkOptionData::stacking(6)),
Perks::BlessingOfTheSky => Some(PerkOptionData::toggle()),
Perks::MementoMori => Some(PerkOptionData::toggle()),
Perks::TractorCannon => Some(PerkOptionData::static_()),
Perks::HarmonicLaser => Some(PerkOptionData::stacking(2)),
Expand Down