Skip to content

Commit d82ba6c

Browse files
committed
[ele] fix vb multiplier
1 parent 8c515b2 commit d82ba6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/class_modules/sc_shaman.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6647,7 +6647,7 @@ struct lava_burst_overload_t : public elemental_overload_spell_t
66476647

66486648
if ( is_variant( spell_variant::PURGING_FLAMES ) && p()->bugs )
66496649
{
6650-
m *= p()->talent.purging_flames->effectN( 1 ).percent();
6650+
m *= p()->buff.purging_flames->data().effectN( 1 ).percent();
66516651
}
66526652

66536653
if ( player->specialization() == SHAMAN_ELEMENTAL )
@@ -6967,7 +6967,7 @@ struct lava_burst_t : public shaman_spell_t
69676967

69686968
if ( is_variant( spell_variant::PURGING_FLAMES ) && p()->bugs )
69696969
{
6970-
m *= p()->talent.purging_flames->effectN( 1 ).percent();
6970+
m *= p()->buff.purging_flames->data().effectN( 1 ).percent();
69716971
}
69726972

69736973
if (player->specialization() == SHAMAN_ELEMENTAL)

0 commit comments

Comments
 (0)