Skip to content

Commit

Permalink
[Death Knight] Remove UH T21 4P manual hotfix
Browse files Browse the repository at this point in the history
(and a bunch of commented out hotfixes too)
  • Loading branch information
Melekus committed Dec 23, 2017
1 parent e31dfa0 commit 7f8650d
Showing 1 changed file with 0 additions and 79 deletions.
79 changes: 0 additions & 79 deletions engine/class_modules/sc_death_knight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9971,85 +9971,6 @@ struct death_knight_module_t : public module_t {

void register_hotfixes() const override
{
hotfix::register_spell( "Death Knight", "2017-12-23", "Dreadwake Armor 4-piece set bonus can now proc from its own bonus. Proc chance reduced to 16% (was 20%).", 251872 )
.field( "proc_chance" )
.operation( hotfix::HOTFIX_SET )
.modifier( 16 )
.verification_value( 20 );

/*
hotfix::register_effect( "Death Knight", "2017-01-10", "Portal to the Underworld damage increased by 33%.", 325047 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 4/3.0 )
.verification_value( 1.2 );

hotfix::register_effect( "Death Knight", "2016-08-23", "Clawing Shadows damage has been changed to 130% weapon damage (was 150% Attack Power).", 324719 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_SET )
.modifier( 0 )
.verification_value( 1.5 );

hotfix::register_effect( "Death Knight", "2016-08-23", "Blood Boil's damage has been reduced by 39%.", 43101 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1 - 0.39 )
.verification_value( 3.75 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Remorseless Winter damage increased by 50%.", 288891 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.5 )
.verification_value( 0.24 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Obliterate damage increased by 19%.", 331345 )
.field( "base_value" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.19 )
.verification_value( 320 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Obliterate damage increased by 19%.-offhand", 60373 )
.field( "base_value" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.19 )
.verification_value( 320 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Frost Strike damage increased by 12%.", 331348 )
.field( "base_value" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.12 )
.verification_value( 250 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Frost Strike damage increased by 12%.-offhand", 60369 )
.field( "base_value" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.12 )
.verification_value( 250 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Howling Blast damage increased by 10%.", 41296 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.10 )
.verification_value( 0.5 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Frostscythe (Talent) damage increased by 13%.", 306492 )
.field( "base_value" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.13 )
.verification_value( 120 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Frozen Pulse (Talent) damage increased by 11%.", 287339 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.11 )
.verification_value( 0.72 );

hotfix::register_effect( "Death Knight", "2016-09-23", "Breath of Sindragosa (Talent) damage increased by 17%.", 215545 )
.field( "ap_coefficient" )
.operation( hotfix::HOTFIX_MUL )
.modifier( 1.17 )
.verification_value( 1.5 );
*/
}

void init( player_t* ) const override {}
Expand Down

0 comments on commit 7f8650d

Please sign in to comment.