Post:
Simulationcraft on post-3.1 specs
User:
fip
Infraction: 6. Do not post unless you have something new and worthwhile to say.
Points: 1
Administrative Note:
Message to User:
|
You'd best check your sources before posting something like that again.
|
Original Post:
It appears that builds including Master Conjurer may not be reflecting the most recent changes:
"Increases the combat ratings gained from your Spellstone and Firestone by 150/300%" old was 15/30%.
spell_stone_t( player_t* player, const std::string& options_str ) :
warlock_spell_t( "spell_stone", player, SCHOOL_FIRE, TREE_DEMONOLOGY )
{
warlock_t* p = player -> cast_warlock();
trigger_gcd = 0;
bonus_haste = ( ( p -> level <= 60 ) ? 30 :
( p -> level <= 66 ) ? 40 :
( p -> level <= 72 ) ? 50 : 60 );
bonus_haste = (int16_t) ( bonus_haste * ( 1.0 + p -> talents.master_conjuror * 0.15 ) );
}
Looks like it's working off the old ratings.
|