tjc12821

Untitled

Jul 25th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. double warlock_pet_t::resource_regen_per_second( resource_e r ) const
  2. {
  3.   double reg = base_t::resource_regen_per_second( r );
  4.  
  5.   if ( r == RESOURCE_ENERGY )
  6.   {
  7.     if ( o()->bugs )
  8.       reg /= cache.spell_haste();
  9.   }
  10.  
  11.   return reg;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment