Archive for February, 2009
Sacred Shield vs Aura
I’m not sure how correct this is, but I thought it would be fun to compared how much Sacred Shield can absorb against a regular source of raid damage (in this case Sapphiron’s frost aura in Naxx25)
The mechanics of SS is a little strange, best to read up on the skill on WoWHead, or WoWWiki
Each [...]
array_unique javascript snippet
function array_unique(a)
{
return a.reduce(function(u, e)
{
if(!(e in u))
u.push(e);
return u;
}, []);
}