Skip to main content

wowlab_engine_content/hooks/retribution_paladin/
bugs.rs

1//! Modeled live-game bugs for Retribution Paladin.
2
3wowlab_engine_ports::define_game_bug! {
4    /// Burn to Ash applies its Consecration damage bonus twice in live combat.
5    pub(super) static BUG_BURN_TO_ASH_CONSECRATION = (
6        "burn_to_ash_consecration",
7        "Burn to Ash multiplies Consecration damage by its bonus twice (sc_paladin.cpp:359-363)",
8    );
9}
10
11wowlab_engine_ports::define_game_bug! {
12    /// Hammer of Light grants twice its normal Crusade stacks below five stacks.
13    pub(super) static BUG_HAMMER_OF_LIGHT_CRUSADE = (
14        "hammer_of_light_crusade",
15        "Hammer of Light grants ten Crusade stacks when Avenging Wrath has fewer than five (sc_paladin.hpp:1611-1615)",
16    );
17}