Skip to content

Commit

Permalink
[Mage] Wintertide update
Browse files Browse the repository at this point in the history
  • Loading branch information
vituscze committed Jan 27, 2025
1 parent 7fa1731 commit 402b15e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions engine/class_modules/sc_mage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,6 @@ struct mage_t final : public player_t
unsigned initial_spellfire_spheres = 5;
arcane_phoenix_rotation arcane_phoenix_rotation_override = arcane_phoenix_rotation::DEFAULT;
bool ice_nova_consumes_winters_chill = true;
bool consume_wintertide = true;
} options;

// Pets
Expand Down Expand Up @@ -3261,8 +3260,6 @@ struct icicle_t final : public frost_mage_spell_t
return;

p()->trigger_fof( p()->talents.flash_freeze->effectN( 1 ).percent(), p()->procs.fingers_of_frost_flash_freeze );
if ( p()->options.consume_wintertide )
p()->buffs.wintertide->expire();
}

double action_multiplier() const override
Expand Down Expand Up @@ -5384,8 +5381,7 @@ struct glacial_spike_t final : public frost_mage_spell_t
if ( consumed_wc )
p()->trigger_splinter( s->target, as<int>( p()->talents.signature_spell->effectN( 2 ).base_value() ) );

if ( p()->options.consume_wintertide )
p()->buffs.wintertide->expire();
p()->buffs.wintertide->expire();
}
};

Expand Down Expand Up @@ -7828,7 +7824,6 @@ void mage_t::create_options()
return true;
} ) );
add_option( opt_bool( "mage.ice_nova_consumes_winters_chill", options.ice_nova_consumes_winters_chill ) );
add_option( opt_bool( "mage.consume_wintertide", options.consume_wintertide ) );

player_t::create_options();
}
Expand Down Expand Up @@ -8509,6 +8504,7 @@ void mage_t::create_buffs()
->set_chance( talents.slick_ice.ok() );
buffs.wintertide = make_buff( this, "wintertide", find_spell( 1222865 ) )
->set_default_value_from_effect( 1 )
->modify_max_stack( as<int>( talents.wintertide->effectN( 1 ).base_value() ) )
->set_chance( talents.wintertide.ok() );


Expand Down

0 comments on commit 402b15e

Please sign in to comment.