Skip to content

Commit

Permalink
[Druid] Fix Rip duration
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanzara committed Jan 9, 2019
1 parent 8fda106 commit f682533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/sc_druid.cpp
Expand Up @@ -3904,7 +3904,7 @@ struct rip_t : public cat_attack_t
{
timespan_t t = cat_attack_t::composite_dot_duration( s );

return t *= p()->resources.current[ RESOURCE_COMBO_POINT ];
return t *= ( p()->resources.current[ RESOURCE_COMBO_POINT ] + 1 );

return t;
}
Expand Down

0 comments on commit f682533

Please sign in to comment.