Skip to content
Merged
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
16 changes: 6 additions & 10 deletions engine/class_modules/sc_rogue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9750,11 +9750,6 @@ void rogue_t::init_spells()
effect_mask_t( true ).disable( 5 ) :
effect_mask_t( true ) );

// 01-18-2026 -- Ravenholdt Mint does not modify Fatebound Heads beyond one stack so it is essentially nonfunctional
register_passive_effect_mask( talent.fatebound.ravenholdt_mint, bugs ?
effect_mask_t( false ).enable( 2 ) :
effect_mask_t( true ) );

parse_all_class_passives();
parse_all_passive_talents();
parse_all_passive_sets();
Expand Down Expand Up @@ -10267,14 +10262,15 @@ void rogue_t::create_buffs()
if ( spell.fatebound_coin_heads_buff->ok() )
{
// Combine the 2% per additional stack buff (which we use as the stacking base buff) and 8% from initial stack buff
// Ravenholdt Mint modifies stacking buff to 6%
// As of Midnight, the initial stack value is scripted
// Ravenholdt Mint brings the initial value to 12%
// As of Midnight, the initial value is scripted
double initial_value = spell.fatebound_coin_heads_buff->effectN( 4 ).percent() + talent.fatebound.ravenholdt_mint->effectN( 1 ).percent();
buffs.fatebound_coin_heads->set_direct_mod( spell.fatebound_coin_heads_buff, 1, spell.fatebound_coin_heads_buff->effectN( 1 ).percent(),
1.0 + spell.fatebound_coin_heads_buff->effectN( 4 ).percent() );
1.0 + initial_value );
buffs.fatebound_coin_heads->set_periodic_mod( spell.fatebound_coin_heads_buff, 2, spell.fatebound_coin_heads_buff->effectN( 2 ).percent(),
1.0 + spell.fatebound_coin_heads_buff->effectN( 4 ).percent() );
1.0 + initial_value );
buffs.fatebound_coin_heads->set_auto_attack_mod( spell.fatebound_coin_heads_buff, 3, spell.fatebound_coin_heads_buff->effectN( 3 ).percent(),
1.0 + spell.fatebound_coin_heads_buff->effectN( 4 ).percent() );
1.0 + initial_value );
}

buffs.fatebound_coin_heads
Expand Down
Loading