Skip to content

Commit

Permalink
[Warlock] Minor Destruction talent fixes (#9061)
Browse files Browse the repository at this point in the history
* [Warlock] Clear Decimation on cast

* Fix Dimension Ripper default
  • Loading branch information
Azevara authored Jul 21, 2024
1 parent c361316 commit 2448ae7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion engine/class_modules/warlock/sc_warlock_actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ using namespace helpers;

// Destruction
bool decimation = false;
bool dimension_ripper = true;
bool dimension_ripper = false;
} triggers;

warlock_spell_t( util::string_view token, warlock_t* p, const spell_data_t* s = spell_data_t::nil() )
Expand Down Expand Up @@ -3431,6 +3431,8 @@ using namespace helpers;
immolate->execute_on_target( target );

p()->buffs.backdraft->decrement();

p()->buffs.decimation->decrement();
}

double composite_crit_chance() const override
Expand Down

0 comments on commit 2448ae7

Please sign in to comment.