Skip to content

Commit

Permalink
[Shaman] Elemental fix rumbling tremors aoe to be active on normal ea…
Browse files Browse the repository at this point in the history
…rth elemental too
  • Loading branch information
Bloodmallet committed Jul 1, 2018
1 parent 693a736 commit d86e635
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions engine/class_modules/sc_shaman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2363,7 +2363,7 @@ struct earth_elemental_t : public primal_elemental_t

bool ready() override
{
if ( p()->o()->azerite.rumbling_tremors.ok() )
if ( !p()->o()->azerite.rumbling_tremors.ok() )
{
return false;
}
Expand Down Expand Up @@ -3411,7 +3411,7 @@ struct lava_lash_t : public shaman_attack_t

add_child( cl );

if ( player->talent.elemental_spirits->ok() )
if ( player->talent.elemental_spirits->ok() )
{
mw_dot = new molten_weapon_dot_t( player );
add_child( mw_dot );
Expand Down Expand Up @@ -3967,7 +3967,6 @@ struct ember_elemental_t : public shaman_spell_t
{
shaman_spell_t::execute();

// Summon first non sleeping Ember Elemental
if ( p()->azerite.echo_of_the_elementals.ok() )
{
p()->pet.guardian_ember_elemental->summon( base_spell->duration() );
Expand Down Expand Up @@ -4020,7 +4019,6 @@ struct spark_elemental_t : public shaman_spell_t
{
shaman_spell_t::execute();

// Summon first non sleeping Spark Elemental
if ( p()->azerite.echo_of_the_elementals.ok() )
{
p()->pet.guardian_spark_elemental->summon( base_spell->duration() );
Expand Down

0 comments on commit d86e635

Please sign in to comment.