Skip to content
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c7d155a
Initial Affliction APL and Profiles
Xerfall Feb 23, 2026
882dc5f
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Feb 23, 2026
20900c7
[Warlock] Fixing output file name of MID1_Warlock_Affliction.simc
Xerfall Feb 23, 2026
e423127
[Warlock] Fixing missed generator file name
Xerfall Feb 23, 2026
d4b56de
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Feb 23, 2026
7fe17f7
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Mar 8, 2026
797c670
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Mar 9, 2026
3d95821
[Warlock] Updates to Affliction APL: Adding Cleave and AoE APLs, as w…
Xerfall Mar 9, 2026
60fbfbc
Merge branch 'midnight' of https://github.com/Xerfall/simc into midnight
Xerfall Mar 9, 2026
31b7949
[Warlock] Fix missing action list
Xerfall Mar 9, 2026
adda9b7
[Warlock] Updates to the cleave APL and fix a typo in the profile
Xerfall Mar 9, 2026
3ae96fa
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Mar 11, 2026
d43bd67
[Warlock] Updates to simplify APL hero tree fragments, and allow AoE …
Xerfall Mar 12, 2026
0ae83df
Merge branch 'midnight' of https://github.com/Xerfall/simc into midnight
Xerfall Mar 12, 2026
ea68111
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Mar 16, 2026
ecf7354
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Mar 25, 2026
67b232c
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Apr 9, 2026
092980d
[Warlock] Updates to Aff APL and profile
Xerfall Apr 9, 2026
6c0781d
[Warlock] Update to the Aff profile
Xerfall Apr 9, 2026
836b6fe
[Warlock] Fix typo in the APL
Xerfall Apr 9, 2026
02e849a
[Warlock] Fix typo in the APL
Xerfall Apr 9, 2026
946309c
[Warlock] Fix missing variable
Xerfall Apr 9, 2026
15974da
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Apr 9, 2026
2246e0f
[Warlock] More updates to profile and APL headers formatting fix
Xerfall Apr 9, 2026
78f9fb6
[Warlock] Streamlining the flask usage
Xerfall Apr 9, 2026
dd47ca5
Merge branch 'simulationcraft:midnight' into midnight
Xerfall Apr 10, 2026
2b74395
[Warlock] Formatting fix
Xerfall Apr 10, 2026
731c4b9
solve merge conflict
Xerfall Apr 28, 2026
0226d6b
Merge branch 'midnight' of https://github.com/Xerfall/simc into midnight
Xerfall May 7, 2026
e647a3c
[Warlock] Applying Conflagration of Chaos fix to Shadowburn
Xerfall May 7, 2026
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
3 changes: 1 addition & 2 deletions engine/class_modules/warlock/sc_warlock_actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4520,8 +4520,7 @@ using namespace helpers;
{
double m = warlock_spell_t::composite_da_multiplier( s );

// NOTE: 2026-04-25 Conflagration of Chaos crit damage bonus is not applied to Shadowburn (bug)
if ( p()->buffs.conflagration_of_chaos->check() && !p()->bugs )
if ( p()->buffs.conflagration_of_chaos->check() )
m *= 1.0 + player->cache.spell_crit_chance();

return m;
Expand Down
Loading