Skip to content

Commit

Permalink
[Rogue] Kingsbane & World of Agonizing Bugs
Browse files Browse the repository at this point in the history
AP application applies 2 times the kingsbane tick dmg increases per
application (instead of 1). Seems to be a bug since 7.1.5
Deadly Poison & Wound Poison acts normally.
  • Loading branch information
aethys256 committed Jan 22, 2017
1 parent 8f48c73 commit f28f50f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/class_modules/sc_rogue.cpp
Expand Up @@ -2011,7 +2011,8 @@ struct agonizing_poison_t : public rogue_poison_t
if ( result_is_hit( state -> result ) &&
td( state -> target ) -> dots.kingsbane -> is_ticking() )
{
td( state -> target ) -> debuffs.kingsbane -> trigger();
// As of 01/22/2017, Agonizing Poison applies 2 times per application.
td( state -> target ) -> debuffs.kingsbane -> trigger(2);
}
}
};
Expand Down

0 comments on commit f28f50f

Please sign in to comment.